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

.ir:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1;src:url('chunks/assets/font_e42a144ab119b3ceb5f49541.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_07c6fed159de5320b762328b.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_86ed6e7601e079e975d5c885.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_82ebda2bdb9ebbc8ace90441.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_8cb4e701a7cd38cbddf838f2.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_9f7cfa003cd9fa93c4293f09.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_3e8e99ccdf1c3fd1ef481522.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_bfad03f14e241ada40900d2c.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_d9daddbdf1bb15033a0280fe.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_0de499c1b87368cda5c77d62.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_8e485449555fa75552a0c20a.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_62ce87c892ac5345f34c5ac4.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_b337886f6c75e14e8f8bbdab.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe;src:url('chunks/assets/font_464f72611bf0968d588d1750.woff2')format("woff");}.ffe{font-family:ffe;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:fff;src:url('chunks/assets/font_ddf168cc591508b3a2eacfe0.woff2')format("woff");}.fff{font-family:fff;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff10;src:url('chunks/assets/font_1a9f50c6c2598736abce4dd6.woff2')format("woff");}.ff10{font-family:ff10;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff11;src:url('chunks/assets/font_7bb9c4cb45fb03956240ac79.woff2')format("woff");}.ff11{font-family:ff11;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff12;src:url('chunks/assets/font_37347424bec9aa2793ebfa18.woff2')format("woff");}.ff12{font-family:ff12;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff13;src:url('chunks/assets/font_d6ffb55b3e4f40ed013a17b7.woff2')format("woff");}.ff13{font-family:ff13;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff14;src:url('chunks/assets/font_6e33bbbabc3368c165899154.woff2')format("woff");}.ff14{font-family:ff14;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff15;src:url('chunks/assets/font_23575d90fbf77ea654cdaf1d.woff2')format("woff");}.ff15{font-family:ff15;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff16;src:url('chunks/assets/font_c73796ccd8b6d4c3cd76b112.woff2')format("woff");}.ff16{font-family:ff16;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff17;src:url('chunks/assets/font_e932d1150d9dabc05990f11d.woff2')format("woff");}.ff17{font-family:ff17;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff18;src:url('chunks/assets/font_319294b559d28ae8acfc722a.woff2')format("woff");}.ff18{font-family:ff18;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff19;src:url('chunks/assets/font_c00ce8ddd614264f612fdbe0.woff2')format("woff");}.ff19{font-family:ff19;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1a;src:url('chunks/assets/font_f369c07862f26091d0ed8227.woff2')format("woff");}.ff1a{font-family:ff1a;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1b;src:url('chunks/assets/font_66a9f0cadcd5e35c5d74b1ae.woff2')format("woff");}.ff1b{font-family:ff1b;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1c;src:url('chunks/assets/font_519cf0ac0cfc0f2d0fd9bf42.woff2')format("woff");}.ff1c{font-family:ff1c;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1d;src:url('chunks/assets/font_e38ac78837907e1a3890c9d8.woff2')format("woff");}.ff1d{font-family:ff1d;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1e;src:url('chunks/assets/font_19d3ea64b6686bb7dd86c78a.woff2')format("woff");}.ff1e{font-family:ff1e;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1f;src:url('chunks/assets/font_07692b01826ad5796de12dd0.woff2')format("woff");}.ff1f{font-family:ff1f;line-height:1.432129;font-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{transform:matrix(0.022500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.022500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.022500,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.045000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.045000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.045000,0.000000,0.000000,0.250000,0,0);}
.m59{transform:matrix(0.060000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.060000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.060000,0.000000,0.000000,0.250000,0,0);}
.m19{transform:matrix(0.062500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.062500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.062500,0.000000,0.000000,0.250000,0,0);}
.m57{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);}
.m58{transform:matrix(0.095000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.095000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.095000,0.000000,0.000000,0.250000,0,0);}
.m47{transform:matrix(0.097500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.097500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.097500,0.000000,0.000000,0.250000,0,0);}
.m64{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);}
.m5e{transform:matrix(0.115000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.115000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.115000,0.000000,0.000000,0.250000,0,0);}
.m69{transform:matrix(0.130000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.130000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.130000,0.000000,0.000000,0.250000,0,0);}
.m63{transform:matrix(0.135000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.135000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.135000,0.000000,0.000000,0.250000,0,0);}
.m65{transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);}
.m50{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);}
.m2c{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);}
.m44{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);}
.m51{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);}
.m42{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);}
.m43{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);}
.m37{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);}
.m13{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);}
.m11{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);}
.m4b{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);}
.m30{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);}
.m5a{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);}
.m32{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);}
.m5d{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);}
.m68{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);}
.m1c{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);}
.m6b{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);}
.m3d{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);}
.m54{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);}
.m29{transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);}
.m23{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);}
.m6d{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);}
.m36{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);}
.m18{transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);}
.m6{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);}
.ma{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.m33{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.mb{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);}
.m10{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);}
.m3{transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);}
.mf{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);}
.m15{transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);}
.m9{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);}
.m2{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);}
.m4{transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);}
.m12{transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);}
.m27{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);}
.m1d{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m17{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m16{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);}
.m24{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);}
.m2b{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.me{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m8{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m14{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m5{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);}
.m2d{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);}
.m1b{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m4a{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m21{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);}
.m25{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.md{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);}
.m34{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m4e{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m1f{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.m3b{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m48{transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);}
.m4c{transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);}
.m4d{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);}
.m39{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.m49{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);}
.m31{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.m20{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);}
.m56{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);}
.m1e{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);}
.m61{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m4f{transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);}
.m35{transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);}
.m3e{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);}
.m3a{transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);}
.m38{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);}
.m3f{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);}
.m2e{transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);}
.m2a{transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);}
.m53{transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);}
.m26{transform:matrix(0.385000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.385000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.385000,0.000000,0.000000,0.250000,0,0);}
.m55{transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);}
.m1a{transform:matrix(0.390000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.390000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.390000,0.000000,0.000000,0.250000,0,0);}
.m22{transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);}
.m62{transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);}
.m28{transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);}
.m2f{transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);}
.m3c{transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);}
.m41{transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);}
.m67{transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);}
.m5f{transform:matrix(0.477500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.477500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.477500,0.000000,0.000000,0.250000,0,0);}
.m60{transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);}
.m6a{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);}
.m40{transform:matrix(0.525000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.525000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.525000,0.000000,0.000000,0.250000,0,0);}
.m52{transform:matrix(0.545000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.545000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.545000,0.000000,0.000000,0.250000,0,0);}
.m6c{transform:matrix(0.552500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.552500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.552500,0.000000,0.000000,0.250000,0,0);}
.m5b{transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);}
.m5c{transform:matrix(0.762500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.762500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.762500,0.000000,0.000000,0.250000,0,0);}
.m46{transform:matrix(0.785000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.785000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.785000,0.000000,0.000000,0.250000,0,0);}
.m66{transform:matrix(0.890000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.890000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.890000,0.000000,0.000000,0.250000,0,0);}
.mc{transform:matrix(5.000000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(5.000000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(5.000000,0.000000,0.000000,0.250000,0,0);}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:5.706000px;}
.ls0{letter-spacing:0.000000px;}
.ls1{letter-spacing:34.061144px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0{word-spacing:0.000000px;}
._0{margin-left:-15.832270px;}
.fc0{color:transparent;}
.fsb{font-size:42.000000px;}
.fs5{font-size:48.000000px;}
.fs1{font-size:54.000000px;}
.fs9{font-size:60.000000px;}
.fs6{font-size:66.000000px;}
.fs3{font-size:72.000000px;}
.fs4{font-size:78.000000px;}
.fsa{font-size:84.000000px;}
.fs2{font-size:96.000000px;}
.fs8{font-size:156.000000px;}
.fs0{font-size:174.000000px;}
.fs7{font-size:198.000000px;}
.y0{bottom:0.000000px;}
.y255{bottom:76.125000px;}
.y225{bottom:78.598500px;}
.y224{bottom:78.973500px;}
.yb7{bottom:80.323500px;}
.yb8{bottom:80.625000px;}
.yb9{bottom:82.048500px;}
.y66{bottom:84.823500px;}
.y37{bottom:84.973500px;}
.y38{bottom:85.648500px;}
.y67{bottom:85.875000px;}
.y288{bottom:88.348500px;}
.y1c0{bottom:94.423500px;}
.y1f8{bottom:95.625000px;}
.y254{bottom:96.298500px;}
.yef{bottom:96.898500px;}
.y223{bottom:99.150000px;}
.yb6{bottom:99.298500px;}
.y64{bottom:101.698500px;}
.y17e{bottom:102.973500px;}
.y17d{bottom:104.023500px;}
.y65{bottom:104.548500px;}
.y287{bottom:105.598500px;}
.y36{bottom:105.823500px;}
.y12a{bottom:107.698500px;}
.y1bd{bottom:111.673500px;}
.y1be{bottom:112.423500px;}
.y1f7{bottom:112.875000px;}
.yed{bottom:113.775000px;}
.y1bf{bottom:114.973500px;}
.yee{bottom:115.198500px;}
.yb5{bottom:115.948500px;}
.y253{bottom:116.473500px;}
.y222{bottom:119.250000px;}
.y286{bottom:122.848500px;}
.y17c{bottom:124.573500px;}
.y128{bottom:125.025000px;}
.y32{bottom:125.250000px;}
.y129{bottom:125.400000px;}
.y33{bottom:125.625000px;}
.y34{bottom:126.375000px;}
.y35{bottom:127.048500px;}
.y1f6{bottom:129.823500px;}
.yeb{bottom:129.973500px;}
.yec{bottom:131.400000px;}
.yb4{bottom:133.198500px;}
.y252{bottom:136.573500px;}
.y285{bottom:139.048500px;}
.y221{bottom:139.423500px;}
.y284{bottom:139.500000px;}
.y127{bottom:141.973500px;}
.y17b{bottom:144.375000px;}
.y31{bottom:146.098500px;}
.y1f5{bottom:146.775000px;}
.yb3{bottom:149.775000px;}
.y283{bottom:156.673500px;}
.y251{bottom:156.750000px;}
.y125{bottom:158.848500px;}
.y126{bottom:159.223500px;}
.y220{bottom:159.900000px;}
.y63{bottom:160.348500px;}
.y17a{bottom:163.423500px;}
.y1f4{bottom:163.723500px;}
.y179{bottom:164.548500px;}
.yb2{bottom:165.223500px;}
.y30{bottom:165.973500px;}
.y1b8{bottom:167.548500px;}
.y1b9{bottom:168.223500px;}
.y1ba{bottom:168.598500px;}
.y1bb{bottom:168.973500px;}
.y1bc{bottom:171.073500px;}
.y282{bottom:173.698500px;}
.y124{bottom:175.500000px;}
.y250{bottom:176.923500px;}
.yea{bottom:178.875000px;}
.y21f{bottom:179.775000px;}
.y21e{bottom:180.448500px;}
.y1f3{bottom:180.598500px;}
.y62{bottom:181.573500px;}
.yaf{bottom:182.173500px;}
.yb0{bottom:183.598500px;}
.y178{bottom:183.973500px;}
.y177{bottom:184.650000px;}
.yb1{bottom:184.723500px;}
.y176{bottom:185.025000px;}
.y2f{bottom:186.150000px;}
.y1b7{bottom:190.198500px;}
.y121{bottom:192.298500px;}
.y122{bottom:192.673500px;}
.y123{bottom:192.750000px;}
.y1f1{bottom:197.473500px;}
.y1f2{bottom:197.923500px;}
.y61{bottom:198.525000px;}
.yac{bottom:200.098500px;}
.ye9{bottom:200.173500px;}
.y21d{bottom:200.250000px;}
.yad{bottom:202.650000px;}
.yae{bottom:202.723500px;}
.y175{bottom:205.198500px;}
.y2c{bottom:205.875000px;}
.y2b{bottom:206.250000px;}
.y280{bottom:206.400000px;}
.y2d{bottom:206.625000px;}
.y24e{bottom:206.848500px;}
.y24f{bottom:207.223500px;}
.y2e{bottom:207.375000px;}
.y281{bottom:207.823500px;}
.y1b5{bottom:207.900000px;}
.y120{bottom:209.323500px;}
.y1b6{bottom:211.423500px;}
.ye8{bottom:217.048500px;}
.yab{bottom:217.798500px;}
.y60{bottom:219.000000px;}
.y21c{bottom:220.048500px;}
.y174{bottom:223.573500px;}
.y173{bottom:223.875000px;}
.y172{bottom:224.250000px;}
.y27f{bottom:224.400000px;}
.y171{bottom:224.698500px;}
.y170{bottom:225.750000px;}
.y11e{bottom:226.198500px;}
.y28{bottom:226.423500px;}
.y11f{bottom:226.573500px;}
.y29{bottom:226.798500px;}
.y2a{bottom:227.173500px;}
.y1b3{bottom:228.750000px;}
.y1b4{bottom:231.223500px;}
.y5f{bottom:236.323500px;}
.y21b{bottom:240.298500px;}
.y21a{bottom:240.973500px;}
.y27e{bottom:241.348500px;}
.yaa{bottom:241.500000px;}
.y11d{bottom:243.150000px;}
.y16f{bottom:243.673500px;}
.y24d{bottom:244.650000px;}
.y16e{bottom:244.798500px;}
.ye6{bottom:245.548500px;}
.ye7{bottom:245.923500px;}
.y1ee{bottom:249.000000px;}
.y1ef{bottom:249.673500px;}
.y1f0{bottom:249.750000px;}
.y1b1{bottom:250.650000px;}
.y1b2{bottom:253.875000px;}
.y27{bottom:256.273500px;}
.y26{bottom:256.348500px;}
.y279{bottom:257.548500px;}
.y27a{bottom:257.848500px;}
.y27b{bottom:258.298500px;}
.y5e{bottom:258.598500px;}
.y27c{bottom:258.973500px;}
.y27d{bottom:259.348500px;}
.y11c{bottom:260.400000px;}
.y219{bottom:260.773500px;}
.ya9{bottom:262.048500px;}
.y24c{bottom:264.750000px;}
.y16d{bottom:264.973500px;}
.y1ed{bottom:269.848500px;}
.y1b0{bottom:273.375000px;}
.y278{bottom:275.548500px;}
.y5d{bottom:278.848500px;}
.y218{bottom:280.948500px;}
.ya6{bottom:281.548500px;}
.ya7{bottom:282.223500px;}
.ya8{bottom:282.598500px;}
.ye4{bottom:283.723500px;}
.y16c{bottom:284.023500px;}
.ye5{bottom:284.398500px;}
.y24a{bottom:284.923500px;}
.y16b{bottom:285.148500px;}
.y24b{bottom:285.298500px;}
.y1ec{bottom:290.023500px;}
.y276{bottom:292.423500px;}
.y277{bottom:292.798500px;}
.y1af{bottom:293.173500px;}
.y24{bottom:297.375000px;}
.y25{bottom:297.673500px;}
.y5c{bottom:299.023500px;}
.y217{bottom:301.423500px;}
.y216{bottom:302.173500px;}
.ya5{bottom:302.773500px;}
.ye3{bottom:303.823500px;}
.y249{bottom:305.098500px;}
.y16a{bottom:305.250000px;}
.y11b{bottom:305.398500px;}
.y275{bottom:308.323500px;}
.y1eb{bottom:309.823500px;}
.y1ae{bottom:313.273500px;}
.y20{bottom:317.848500px;}
.y21{bottom:318.223500px;}
.y22{bottom:318.598500px;}
.y23{bottom:318.973500px;}
.y5b{bottom:319.125000px;}
.y215{bottom:321.898500px;}
.ya4{bottom:323.250000px;}
.ye2{bottom:325.125000px;}
.y169{bottom:325.423500px;}
.y11a{bottom:325.573500px;}
.y248{bottom:326.323500px;}
.y1ea{bottom:330.000000px;}
.y1ad{bottom:331.273500px;}
.y1e{bottom:338.023500px;}
.y1f{bottom:338.398500px;}
.y5a{bottom:339.598500px;}
.y214{bottom:341.773500px;}
.y274{bottom:343.198500px;}
.ya2{bottom:343.423500px;}
.ya3{bottom:344.173500px;}
.y168{bottom:344.848500px;}
.y119{bottom:345.673500px;}
.y247{bottom:345.750000px;}
.y167{bottom:346.273500px;}
.y1e7{bottom:350.173500px;}
.y1e8{bottom:350.473500px;}
.y1e9{bottom:350.548500px;}
.y1ac{bottom:353.250000px;}
.ye1{bottom:354.223500px;}
.y1d{bottom:358.198500px;}
.y59{bottom:359.848500px;}
.y273{bottom:360.148500px;}
.y213{bottom:361.875000px;}
.ya1{bottom:363.973500px;}
.y166{bottom:365.398500px;}
.y118{bottom:365.848500px;}
.y246{bottom:365.923500px;}
.y1e6{bottom:370.273500px;}
.y1a9{bottom:373.048500px;}
.y1aa{bottom:375.223500px;}
.y1ab{bottom:375.598500px;}
.y272{bottom:377.398500px;}
.y1b{bottom:378.000000px;}
.y1c{bottom:378.375000px;}
.y212{bottom:381.750000px;}
.y245{bottom:382.798500px;}
.ya0{bottom:384.823500px;}
.y165{bottom:385.875000px;}
.y116{bottom:386.023500px;}
.y117{bottom:386.098500px;}
.y1e3{bottom:390.148500px;}
.y1e4{bottom:390.448500px;}
.y1e5{bottom:390.823500px;}
.y57{bottom:391.125000px;}
.y58{bottom:391.500000px;}
.ye0{bottom:393.073500px;}
.y1a8{bottom:393.598500px;}
.y1a{bottom:398.098500px;}
.y19{bottom:398.173500px;}
.y18{bottom:398.473500px;}
.y243{bottom:402.298500px;}
.y242{bottom:402.673500px;}
.y211{bottom:402.898500px;}
.y244{bottom:402.973500px;}
.y164{bottom:405.298500px;}
.y113{bottom:405.448500px;}
.y114{bottom:405.823500px;}
.y163{bottom:406.048500px;}
.y115{bottom:406.198500px;}
.y162{bottom:406.423500px;}
.y9e{bottom:406.500000px;}
.y9f{bottom:407.173500px;}
.y1e0{bottom:410.250000px;}
.y1e1{bottom:410.625000px;}
.y1e2{bottom:411.000000px;}
.y1a1{bottom:411.973500px;}
.ydd{bottom:412.573500px;}
.yde{bottom:413.250000px;}
.y1a3{bottom:413.398500px;}
.y1a4{bottom:413.773500px;}
.ydf{bottom:414.000000px;}
.y1a5{bottom:415.198500px;}
.y1a2{bottom:415.500000px;}
.y1a6{bottom:415.875000px;}
.y1a7{bottom:415.948500px;}
.y17{bottom:418.648500px;}
.y210{bottom:422.398500px;}
.y241{bottom:423.523500px;}
.y9d{bottom:425.548500px;}
.y111{bottom:426.298500px;}
.y161{bottom:426.598500px;}
.y112{bottom:426.673500px;}
.y160{bottom:427.348500px;}
.y1df{bottom:430.798500px;}
.y271{bottom:431.098500px;}
.ydc{bottom:433.798500px;}
.y1a0{bottom:434.250000px;}
.y55{bottom:437.548500px;}
.y15{bottom:438.823500px;}
.y16{bottom:439.198500px;}
.y56{bottom:439.723500px;}
.y20f{bottom:442.573500px;}
.y9c{bottom:442.798500px;}
.y240{bottom:443.398500px;}
.y15f{bottom:446.398500px;}
.y1de{bottom:450.898500px;}
.y270{bottom:451.198500px;}
.yd9{bottom:453.223500px;}
.yda{bottom:453.598500px;}
.y19f{bottom:453.750000px;}
.ydb{bottom:454.273500px;}
.y54{bottom:457.348500px;}
.y10f{bottom:458.773500px;}
.y110{bottom:459.148500px;}
.y9b{bottom:459.375000px;}
.y23f{bottom:463.875000px;}
.y15e{bottom:466.500000px;}
.y14{bottom:468.375000px;}
.y1dc{bottom:470.398500px;}
.y1dd{bottom:470.773500px;}
.y26f{bottom:471.298500px;}
.y19e{bottom:473.923500px;}
.yd8{bottom:474.148500px;}
.y99{bottom:474.823500px;}
.y9a{bottom:476.698500px;}
.y53{bottom:477.898500px;}
.y20e{bottom:482.923500px;}
.y23e{bottom:484.348500px;}
.y15d{bottom:486.375000px;}
.y26e{bottom:490.048500px;}
.y1db{bottom:490.875000px;}
.y97{bottom:491.698500px;}
.y98{bottom:493.500000px;}
.yd7{bottom:494.250000px;}
.y19d{bottom:494.398500px;}
.y10c{bottom:496.198500px;}
.y10d{bottom:496.500000px;}
.y51{bottom:496.648500px;}
.y10e{bottom:496.875000px;}
.y52{bottom:498.750000px;}
.y23d{bottom:504.523500px;}
.y15c{bottom:506.473500px;}
.y15b{bottom:506.848500px;}
.y15a{bottom:507.223500px;}
.y95{bottom:510.823500px;}
.y26d{bottom:511.348500px;}
.y1da{bottom:511.423500px;}
.y13{bottom:513.000000px;}
.y96{bottom:513.375000px;}
.yd6{bottom:514.423500px;}
.y19c{bottom:514.500000px;}
.y10a{bottom:516.673500px;}
.y10b{bottom:517.048500px;}
.y23c{bottom:524.698500px;}
.y159{bottom:526.648500px;}
.y94{bottom:527.698500px;}
.y50{bottom:530.473500px;}
.y1d9{bottom:531.898500px;}
.y20d{bottom:534.375000px;}
.y2a4{bottom:534.523500px;}
.yd3{bottom:534.598500px;}
.y19b{bottom:534.750000px;}
.yd5{bottom:534.898500px;}
.yd4{bottom:534.973500px;}
.y109{bottom:536.173500px;}
.y108{bottom:536.548500px;}
.y26a{bottom:543.000000px;}
.y26b{bottom:543.375000px;}
.y26c{bottom:544.125000px;}
.y91{bottom:544.648500px;}
.y92{bottom:546.823500px;}
.y93{bottom:547.198500px;}
.y1d8{bottom:551.773500px;}
.y23b{bottom:553.875000px;}
.y20c{bottom:554.098500px;}
.y12{bottom:554.398500px;}
.y19a{bottom:554.848500px;}
.yd1{bottom:555.073500px;}
.yd2{bottom:555.448500px;}
.y107{bottom:557.023500px;}
.y8d{bottom:560.848500px;}
.y8e{bottom:561.898500px;}
.y8f{bottom:561.973500px;}
.y90{bottom:563.023500px;}
.y158{bottom:566.700000px;}
.y157{bottom:567.298500px;}
.y156{bottom:567.750000px;}
.y2a3{bottom:569.773500px;}
.y2a2{bottom:570.523500px;}
.y1d7{bottom:572.250000px;}
.y20b{bottom:574.273500px;}
.y4c{bottom:575.098500px;}
.y199{bottom:575.398500px;}
.yd0{bottom:575.625000px;}
.y4d{bottom:575.848500px;}
.y4e{bottom:576.523500px;}
.y8a{bottom:576.673500px;}
.y8b{bottom:577.125000px;}
.y4f{bottom:577.200000px;}
.y106{bottom:577.575000px;}
.y8c{bottom:579.223500px;}
.y153{bottom:583.950000px;}
.y269{bottom:585.523500px;}
.y155{bottom:586.423500px;}
.y154{bottom:586.798500px;}
.y152{bottom:587.173500px;}
.y151{bottom:587.473500px;}
.y150{bottom:588.223500px;}
.y1d5{bottom:591.673500px;}
.y1d4{bottom:591.750000px;}
.y23a{bottom:592.048500px;}
.y1d6{bottom:592.423500px;}
.y86{bottom:593.325000px;}
.y198{bottom:593.700000px;}
.y20a{bottom:594.450000px;}
.y87{bottom:595.125000px;}
.ycf{bottom:595.798500px;}
.y88{bottom:596.098500px;}
.y49{bottom:596.325000px;}
.y89{bottom:596.923500px;}
.y4a{bottom:597.375000px;}
.y4b{bottom:598.125000px;}
.y268{bottom:604.575000px;}
.y14f{bottom:606.598500px;}
.y14e{bottom:607.348500px;}
.y2a1{bottom:607.950000px;}
.y14d{bottom:608.023500px;}
.y2a0{bottom:608.700000px;}
.y85{bottom:611.250000px;}
.y1d3{bottom:612.298500px;}
.y239{bottom:612.523500px;}
.y209{bottom:614.625000px;}
.y11{bottom:615.598500px;}
.y197{bottom:615.750000px;}
.ycd{bottom:615.973500px;}
.yce{bottom:616.273500px;}
.y10{bottom:616.648500px;}
.y48{bottom:617.173500px;}
.y105{bottom:617.473500px;}
.y267{bottom:625.500000px;}
.y29f{bottom:628.125000px;}
.y29e{bottom:628.875000px;}
.y29d{bottom:629.250000px;}
.y29c{bottom:629.625000px;}
.y1d2{bottom:632.700000px;}
.y14c{bottom:634.348500px;}
.y194{bottom:634.798500px;}
.ycc{bottom:636.450000px;}
.y195{bottom:636.973500px;}
.y102{bottom:637.648500px;}
.y196{bottom:637.650000px;}
.y103{bottom:638.023500px;}
.y104{bottom:638.398500px;}
.y84{bottom:639.375000px;}
.y266{bottom:645.223500px;}
.y29b{bottom:647.923500px;}
.y29a{bottom:648.298500px;}
.y299{bottom:649.348500px;}
.y47{bottom:649.650000px;}
.y236{bottom:652.125000px;}
.y1d1{bottom:652.948500px;}
.y237{bottom:653.173500px;}
.y238{bottom:654.298500px;}
.y208{bottom:654.598500px;}
.y193{bottom:655.275000px;}
.ycb{bottom:656.625000px;}
.y101{bottom:658.198500px;}
.y83{bottom:659.848500px;}
.y265{bottom:665.775000px;}
.y298{bottom:669.150000px;}
.y14b{bottom:671.775000px;}
.y14a{bottom:672.073500px;}
.y235{bottom:672.973500px;}
.y191{bottom:673.348500px;}
.y1d0{bottom:673.423500px;}
.y207{bottom:674.775000px;}
.y206{bottom:675.073500px;}
.y205{bottom:675.150000px;}
.y192{bottom:675.823500px;}
.yca{bottom:676.798500px;}
.y100{bottom:678.375000px;}
.y82{bottom:678.598500px;}
.y264{bottom:685.875000px;}
.y297{bottom:689.323500px;}
.y149{bottom:691.948500px;}
.y1cf{bottom:693.223500px;}
.y204{bottom:695.323500px;}
.y46{bottom:695.698500px;}
.y190{bottom:696.298500px;}
.yc9{bottom:697.275000px;}
.yff{bottom:698.473500px;}
.y7e{bottom:699.823500px;}
.y7f{bottom:700.948500px;}
.y80{bottom:701.250000px;}
.y81{bottom:702.000000px;}
.y263{bottom:705.375000px;}
.y296{bottom:708.750000px;}
.y295{bottom:709.125000px;}
.y294{bottom:709.500000px;}
.y147{bottom:711.673500px;}
.y148{bottom:711.750000px;}
.y145{bottom:712.048500px;}
.y146{bottom:712.125000px;}
.y144{bottom:712.423500px;}
.y233{bottom:712.573500px;}
.y143{bottom:712.798500px;}
.y234{bottom:712.948500px;}
.y1ce{bottom:714.073500px;}
.y18d{bottom:714.673500px;}
.y18e{bottom:715.798500px;}
.y45{bottom:715.875000px;}
.yc8{bottom:717.448500px;}
.y18f{bottom:717.598500px;}
.yfe{bottom:718.723500px;}
.y7b{bottom:720.000000px;}
.y7c{bottom:720.375000px;}
.y7d{bottom:721.125000px;}
.y262{bottom:724.798500px;}
.ye{bottom:731.173500px;}
.yb{bottom:731.548500px;}
.yc{bottom:731.848500px;}
.y142{bottom:732.598500px;}
.y18b{bottom:733.798500px;}
.y1cd{bottom:733.875000px;}
.y232{bottom:734.173500px;}
.y203{bottom:735.973500px;}
.y44{bottom:736.423500px;}
.y18c{bottom:737.025000px;}
.yc7{bottom:738.000000px;}
.yfd{bottom:739.198500px;}
.y7a{bottom:740.923500px;}
.y293{bottom:742.650000px;}
.yf{bottom:743.625000px;}
.yd{bottom:744.298500px;}
.y261{bottom:746.698500px;}
.y141{bottom:752.025000px;}
.y140{bottom:752.400000px;}
.y13f{bottom:752.775000px;}
.y230{bottom:753.298500px;}
.y13e{bottom:753.448500px;}
.y231{bottom:754.348500px;}
.y1cc{bottom:754.423500px;}
.y41{bottom:755.473500px;}
.y42{bottom:756.150000px;}
.y43{bottom:756.900000px;}
.y18a{bottom:757.198500px;}
.yc6{bottom:758.548500px;}
.yfb{bottom:759.000000px;}
.yfc{bottom:759.375000px;}
.y75{bottom:759.900000px;}
.y76{bottom:760.650000px;}
.y77{bottom:760.723500px;}
.y78{bottom:761.025000px;}
.y79{bottom:761.775000px;}
.y260{bottom:766.198500px;}
.y13d{bottom:773.250000px;}
.y1ca{bottom:774.300000px;}
.y22f{bottom:774.525000px;}
.y1cb{bottom:774.900000px;}
.y202{bottom:776.625000px;}
.y40{bottom:776.698500px;}
.y189{bottom:777.675000px;}
.yc4{bottom:778.650000px;}
.yc5{bottom:779.025000px;}
.yf9{bottom:779.473500px;}
.yfa{bottom:779.925000px;}
.y74{bottom:781.573500px;}
.y25f{bottom:786.750000px;}
.y292{bottom:786.900000px;}
.y291{bottom:787.275000px;}
.ya{bottom:789.073500px;}
.y9{bottom:789.150000px;}
.y8{bottom:789.448500px;}
.y7{bottom:789.525000px;}
.y13c{bottom:793.050000px;}
.y13b{bottom:793.800000px;}
.y1c9{bottom:794.775000px;}
.y22e{bottom:795.000000px;}
.y201{bottom:797.098500px;}
.y3f{bottom:797.175000px;}
.y188{bottom:797.848500px;}
.yc3{bottom:798.823500px;}
.yf8{bottom:799.650000px;}
.y72{bottom:801.300000px;}
.y73{bottom:802.425000px;}
.y290{bottom:807.073500px;}
.y25e{bottom:807.223500px;}
.y13a{bottom:813.973500px;}
.y22d{bottom:815.175000px;}
.y1c8{bottom:815.250000px;}
.y186{bottom:816.598500px;}
.y200{bottom:817.348500px;}
.y3e{bottom:817.723500px;}
.y187{bottom:819.073500px;}
.yc2{bottom:819.375000px;}
.yf7{bottom:819.823500px;}
.y70{bottom:821.848500px;}
.y6{bottom:822.223500px;}
.y71{bottom:822.598500px;}
.y5{bottom:822.973500px;}
.y28f{bottom:827.550000px;}
.y25d{bottom:827.775000px;}
.y139{bottom:833.400000px;}
.y138{bottom:834.448500px;}
.y1c6{bottom:835.050000px;}
.y1c7{bottom:835.425000px;}
.y185{bottom:836.775000px;}
.y3c{bottom:837.598500px;}
.y1ff{bottom:837.823500px;}
.y3d{bottom:838.948500px;}
.yc1{bottom:839.473500px;}
.y6b{bottom:839.550000px;}
.yf6{bottom:840.375000px;}
.y6c{bottom:840.973500px;}
.y6d{bottom:842.025000px;}
.y6e{bottom:842.400000px;}
.y6f{bottom:843.073500px;}
.y28e{bottom:847.348500px;}
.y25c{bottom:847.573500px;}
.y28d{bottom:848.098500px;}
.y1c5{bottom:855.223500px;}
.y22c{bottom:855.525000px;}
.y4{bottom:857.473500px;}
.y3{bottom:857.848500px;}
.y1fe{bottom:858.000000px;}
.y3b{bottom:858.073500px;}
.y184{bottom:858.675000px;}
.ybe{bottom:859.650000px;}
.yc0{bottom:859.723500px;}
.ybf{bottom:860.025000px;}
.yf5{bottom:860.473500px;}
.y6a{bottom:862.948500px;}
.y137{bottom:863.625000px;}
.y136{bottom:864.000000px;}
.y25b{bottom:868.425000px;}
.y22b{bottom:875.400000px;}
.y1c4{bottom:875.698500px;}
.y1fd{bottom:878.175000px;}
.y1fc{bottom:878.473500px;}
.y182{bottom:878.848500px;}
.ybd{bottom:880.198500px;}
.yf3{bottom:880.723500px;}
.y28c{bottom:880.875000px;}
.yf4{bottom:881.025000px;}
.y28b{bottom:881.250000px;}
.y183{bottom:881.400000px;}
.y259{bottom:887.848500px;}
.y25a{bottom:888.598500px;}
.y3a{bottom:890.848500px;}
.y69{bottom:891.750000px;}
.y2{bottom:896.025000px;}
.y228{bottom:896.175000px;}
.y1c3{bottom:896.250000px;}
.y229{bottom:897.300000px;}
.y22a{bottom:897.598500px;}
.y1fb{bottom:898.650000px;}
.y181{bottom:899.098500px;}
.ybc{bottom:900.675000px;}
.y135{bottom:901.050000px;}
.y134{bottom:901.425000px;}
.y133{bottom:901.800000px;}
.y132{bottom:902.098500px;}
.y258{bottom:908.098500px;}
.yf2{bottom:913.425000px;}
.yf1{bottom:913.800000px;}
.y1c2{bottom:916.425000px;}
.y180{bottom:919.573500px;}
.ybb{bottom:920.848500px;}
.y131{bottom:920.925000px;}
.y130{bottom:921.223500px;}
.y12f{bottom:921.300000px;}
.y12e{bottom:921.598500px;}
.y12d{bottom:921.973500px;}
.y12c{bottom:922.348500px;}
.y1{bottom:929.925000px;}
.y226{bottom:932.925000px;}
.y227{bottom:933.300000px;}
.y1f9{bottom:935.025000px;}
.y1fa{bottom:935.098500px;}
.y289{bottom:935.925000px;}
.y28a{bottom:936.000000px;}
.y68{bottom:940.275000px;}
.y257{bottom:945.448500px;}
.y256{bottom:945.525000px;}
.y39{bottom:946.650000px;}
.y1c1{bottom:953.175000px;}
.y17f{bottom:956.625000px;}
.yba{bottom:956.848500px;}
.y12b{bottom:958.348500px;}
.yf0{bottom:961.723500px;}
.h15{height:41.200195px;}
.h1f{height:41.220703px;}
.h19{height:47.085938px;}
.h6{height:47.109375px;}
.h17{height:52.971680px;}
.h2{height:52.998047px;}
.h8{height:56.320312px;}
.hf{height:58.886719px;}
.h1d{height:60.468750px;}
.h13{height:62.578125px;}
.h14{height:64.743164px;}
.h7{height:64.775391px;}
.ha{height:66.515625px;}
.h23{height:68.835938px;}
.h21{height:70.481391px;}
.h16{height:70.628906px;}
.h4{height:70.664062px;}
.h9{height:72.562500px;}
.hb{height:75.093750px;}
.h5{height:76.552734px;}
.h1b{height:78.609375px;}
.he{height:81.351562px;}
.h1e{height:82.400391px;}
.h11{height:82.441406px;}
.h3{height:94.218750px;}
.hd{height:153.105469px;}
.h1{height:181.476562px;}
.hc{height:206.507812px;}
.h12{height:1008.000000px;}
.h22{height:1015.500000px;}
.h0{height:1017.000000px;}
.h1c{height:1020.000000px;}
.h10{height:1021.500000px;}
.h20{height:1023.000000px;}
.h18{height:1026.000000px;}
.h1a{height:1029.000000px;}
.w1{width:658.500000px;}
.w0{width:666.000000px;}
.w4{width:669.000000px;}
.w2{width:675.000000px;}
.w3{width:678.000000px;}
.w8{width:679.500000px;}
.w6{width:681.000000px;}
.w7{width:682.500000px;}
.w9{width:684.000000px;}
.w5{width:688.500000px;}
.x0{left:0.000000px;}
.xe7{left:56.550000px;}
.x83{left:57.600000px;}
.x86{left:59.400000px;}
.xd9{left:61.950000px;}
.xd8{left:63.000000px;}
.x3{left:64.425000px;}
.x1c{left:66.600000px;}
.x26{left:68.400000px;}
.xc8{left:69.450000px;}
.x36{left:71.250000px;}
.x38{left:72.375000px;}
.x3f{left:73.800000px;}
.x42{left:75.600000px;}
.x7e{left:77.025000px;}
.x7b{left:78.150000px;}
.x46{left:79.200000px;}
.x48{left:81.000000px;}
.x52{left:82.425000px;}
.xe4{left:87.825000px;}
.x84{left:88.950000px;}
.x8a{left:90.000000px;}
.xdf{left:91.050000px;}
.x43{left:92.550000px;}
.xc5{left:93.975000px;}
.x87{left:95.025000px;}
.x19{left:96.448500px;}
.x32{left:97.573500px;}
.x80{left:99.375000px;}
.x57{left:100.425000px;}
.x35{left:102.225000px;}
.x3a{left:103.350000px;}
.x6e{left:104.775000px;}
.x72{left:105.823500px;}
.x76{left:106.948500px;}
.x7a{left:108.000000px;}
.x7f{left:109.050000px;}
.xd{left:110.175000px;}
.x47{left:111.600000px;}
.x14{left:112.650000px;}
.x1d{left:114.150000px;}
.xe5{left:115.200000px;}
.x65{left:117.375000px;}
.x95{left:118.800000px;}
.x1e{left:120.600000px;}
.xdd{left:121.650000px;}
.x33{left:122.775000px;}
.x97{left:124.950000px;}
.xdb{left:126.750000px;}
.x81{left:128.550000px;}
.x58{left:130.350000px;}
.xb1{left:133.200000px;}
.xb3{left:135.000000px;}
.xbb{left:138.975000px;}
.xe0{left:140.025000px;}
.x5{left:141.150000px;}
.x44{left:143.250000px;}
.x56{left:146.550000px;}
.xee{left:149.025000px;}
.xef{left:150.150000px;}
.x41{left:152.250000px;}
.x3e{left:160.200000px;}
.x8b{left:162.750000px;}
.xcc{left:167.775000px;}
.xa9{left:169.575000px;}
.x5b{left:171.375000px;}
.x89{left:173.175000px;}
.x99{left:177.150000px;}
.xe6{left:178.200000px;}
.xde{left:179.625000px;}
.x9e{left:181.425000px;}
.xb0{left:183.600000px;}
.x88{left:186.450000px;}
.x69{left:191.175000px;}
.xcd{left:192.975000px;}
.xe8{left:194.023500px;}
.x30{left:195.450000px;}
.x2c{left:197.625000px;}
.x96{left:199.800000px;}
.x4{left:201.225000px;}
.x6a{left:203.023500px;}
.xb2{left:204.148500px;}
.xce{left:211.648500px;}
.x66{left:213.450000px;}
.x4e{left:219.975000px;}
.x1{left:222.825000px;}
.xec{left:224.250000px;}
.xe{left:226.800000px;}
.x9{left:229.648500px;}
.x63{left:233.625000px;}
.x62{left:235.050000px;}
.xe2{left:236.850000px;}
.xcb{left:239.025000px;}
.x9f{left:241.575000px;}
.x92{left:243.375000px;}
.x29{left:248.775000px;}
.xd5{left:250.200000px;}
.x5c{left:251.625000px;}
.x39{left:255.975000px;}
.xf{left:259.575000px;}
.xaa{left:261.000000px;}
.x4f{left:262.425000px;}
.x6{left:263.550000px;}
.x7c{left:268.575000px;}
.xa{left:270.000000px;}
.x17{left:271.050000px;}
.xb{left:273.600000px;}
.x16{left:280.050000px;}
.x1f{left:281.175000px;}
.x3c{left:284.775000px;}
.x7{left:286.950000px;}
.xab{left:289.050000px;}
.x50{left:291.600000px;}
.xad{left:292.650000px;}
.x34{left:294.450000px;}
.xd6{left:297.750000px;}
.xc6{left:299.850000px;}
.x6b{left:300.975000px;}
.x2{left:302.025000px;}
.x45{left:307.050000px;}
.xe3{left:308.175000px;}
.xb9{left:312.450000px;}
.x3d{left:313.575000px;}
.x51{left:318.600000px;}
.x67{left:320.400000px;}
.xb4{left:321.450000px;}
.xea{left:322.950000px;}
.x1a{left:325.050000px;}
.xa8{left:327.975000px;}
.x2a{left:330.825000px;}
.x68{left:331.950000px;}
.xc{left:333.375000px;}
.x20{left:335.850000px;}
.x73{left:337.350000px;}
.x18{left:338.400000px;}
.x7d{left:340.950000px;}
.x74{left:343.050000px;}
.xeb{left:344.550000px;}
.x64{left:347.400000px;}
.xc1{left:348.825000px;}
.x49{left:352.050000px;}
.xca{left:355.350000px;}
.xae{left:357.450000px;}
.x78{left:359.625000px;}
.x21{left:361.425000px;}
.x5d{left:362.550000px;}
.x79{left:364.650000px;}
.x3b{left:366.150000px;}
.x59{left:371.175000px;}
.xf1{left:372.225000px;}
.x5e{left:374.025000px;}
.x8e{left:375.825000px;}
.x2d{left:377.625000px;}
.x75{left:379.800000px;}
.x5a{left:381.600000px;}
.x22{left:384.450000px;}
.x10{left:385.950000px;}
.x15{left:390.225000px;}
.x8c{left:393.150000px;}
.x2e{left:394.950000px;}
.x77{left:396.000000px;}
.xd7{left:397.798500px;}
.x4a{left:398.850000px;}
.xa0{left:399.975000px;}
.x8f{left:403.575000px;}
.x2b{left:405.000000px;}
.x8{left:406.798500px;}
.xb8{left:407.850000px;}
.x23{left:410.025000px;}
.x27{left:415.048500px;}
.xed{left:416.850000px;}
.x8d{left:419.025000px;}
.xc2{left:422.250000px;}
.x11{left:424.423500px;}
.x4b{left:425.850000px;}
.x4d{left:428.025000px;}
.xe9{left:429.150000px;}
.xaf{left:430.200000px;}
.x24{left:437.775000px;}
.xa5{left:439.575000px;}
.x53{left:445.650000px;}
.xdc{left:448.200000px;}
.x6f{left:450.375000px;}
.xbc{left:451.798500px;}
.xac{left:453.225000px;}
.x93{left:456.150000px;}
.x6c{left:459.000000px;}
.x25{left:460.800000px;}
.xcf{left:461.850000px;}
.x1b{left:463.650000px;}
.x54{left:465.825000px;}
.xbf{left:470.550000px;}
.x70{left:472.350000px;}
.xd0{left:477.750000px;}
.xc7{left:479.175000px;}
.x6d{left:480.225000px;}
.xa6{left:481.350000px;}
.x85{left:484.200000px;}
.xd2{left:489.225000px;}
.x55{left:492.450000px;}
.xa7{left:497.850000px;}
.x94{left:500.775000px;}
.xd3{left:501.825000px;}
.x2f{left:506.175000px;}
.xb5{left:507.975000px;}
.xd1{left:509.775000px;}
.xda{left:514.050000px;}
.x98{left:518.025000px;}
.x12{left:519.150000px;}
.x90{left:523.425000px;}
.xb6{left:525.225000px;}
.x82{left:527.400000px;}
.xa1{left:528.825000px;}
.xa2{left:531.000000px;}
.xba{left:533.175000px;}
.x31{left:536.775000px;}
.x40{left:537.825000px;}
.x9a{left:540.375000px;}
.x4c{left:541.425000px;}
.x5f{left:543.225000px;}
.x37{left:545.400000px;}
.x9b{left:550.050000px;}
.xa3{left:555.150000px;}
.x9c{left:556.200000px;}
.x60{left:561.225000px;}
.xb7{left:562.350000px;}
.xbe{left:563.775000px;}
.x9d{left:565.200000px;}
.xbd{left:566.250000px;}
.x28{left:568.800000px;}
.x91{left:569.850000px;}
.x13{left:572.025000px;}
.xa4{left:574.950000px;}
.x71{left:579.975000px;}
.xd4{left:581.400000px;}
.xc9{left:587.850000px;}
.x61{left:589.350000px;}
.xc3{left:590.400000px;}
.xf0{left:592.575000px;}
.xc4{left:599.025000px;}
.xc0{left:605.850000px;}
.xe1{left:615.975000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:5.072000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls1{letter-spacing:30.276572pt;}
.ws0{word-spacing:0.000000pt;}
._0{margin-left:-14.073129pt;}
.fsb{font-size:37.333333pt;}
.fs5{font-size:42.666667pt;}
.fs1{font-size:48.000000pt;}
.fs9{font-size:53.333333pt;}
.fs6{font-size:58.666667pt;}
.fs3{font-size:64.000000pt;}
.fs4{font-size:69.333333pt;}
.fsa{font-size:74.666667pt;}
.fs2{font-size:85.333333pt;}
.fs8{font-size:138.666667pt;}
.fs0{font-size:154.666667pt;}
.fs7{font-size:176.000000pt;}
.y0{bottom:0.000000pt;}
.y255{bottom:67.666667pt;}
.y225{bottom:69.865333pt;}
.y224{bottom:70.198667pt;}
.yb7{bottom:71.398667pt;}
.yb8{bottom:71.666667pt;}
.yb9{bottom:72.932000pt;}
.y66{bottom:75.398667pt;}
.y37{bottom:75.532000pt;}
.y38{bottom:76.132000pt;}
.y67{bottom:76.333333pt;}
.y288{bottom:78.532000pt;}
.y1c0{bottom:83.932000pt;}
.y1f8{bottom:85.000000pt;}
.y254{bottom:85.598667pt;}
.yef{bottom:86.132000pt;}
.y223{bottom:88.133333pt;}
.yb6{bottom:88.265333pt;}
.y64{bottom:90.398667pt;}
.y17e{bottom:91.532000pt;}
.y17d{bottom:92.465333pt;}
.y65{bottom:92.932000pt;}
.y287{bottom:93.865333pt;}
.y36{bottom:94.065333pt;}
.y12a{bottom:95.732000pt;}
.y1bd{bottom:99.265333pt;}
.y1be{bottom:99.932000pt;}
.y1f7{bottom:100.333333pt;}
.yed{bottom:101.133333pt;}
.y1bf{bottom:102.198667pt;}
.yee{bottom:102.398667pt;}
.yb5{bottom:103.065333pt;}
.y253{bottom:103.532000pt;}
.y222{bottom:106.000000pt;}
.y286{bottom:109.198667pt;}
.y17c{bottom:110.732000pt;}
.y128{bottom:111.133333pt;}
.y32{bottom:111.333333pt;}
.y129{bottom:111.466667pt;}
.y33{bottom:111.666667pt;}
.y34{bottom:112.333333pt;}
.y35{bottom:112.932000pt;}
.y1f6{bottom:115.398667pt;}
.yeb{bottom:115.532000pt;}
.yec{bottom:116.800000pt;}
.yb4{bottom:118.398667pt;}
.y252{bottom:121.398667pt;}
.y285{bottom:123.598667pt;}
.y221{bottom:123.932000pt;}
.y284{bottom:124.000000pt;}
.y127{bottom:126.198667pt;}
.y17b{bottom:128.333333pt;}
.y31{bottom:129.865333pt;}
.y1f5{bottom:130.466667pt;}
.yb3{bottom:133.133333pt;}
.y283{bottom:139.265333pt;}
.y251{bottom:139.333333pt;}
.y125{bottom:141.198667pt;}
.y126{bottom:141.532000pt;}
.y220{bottom:142.133333pt;}
.y63{bottom:142.532000pt;}
.y17a{bottom:145.265333pt;}
.y1f4{bottom:145.532000pt;}
.y179{bottom:146.265333pt;}
.yb2{bottom:146.865333pt;}
.y30{bottom:147.532000pt;}
.y1b8{bottom:148.932000pt;}
.y1b9{bottom:149.532000pt;}
.y1ba{bottom:149.865333pt;}
.y1bb{bottom:150.198667pt;}
.y1bc{bottom:152.065333pt;}
.y282{bottom:154.398667pt;}
.y124{bottom:156.000000pt;}
.y250{bottom:157.265333pt;}
.yea{bottom:159.000000pt;}
.y21f{bottom:159.800000pt;}
.y21e{bottom:160.398667pt;}
.y1f3{bottom:160.532000pt;}
.y62{bottom:161.398667pt;}
.yaf{bottom:161.932000pt;}
.yb0{bottom:163.198667pt;}
.y178{bottom:163.532000pt;}
.y177{bottom:164.133333pt;}
.yb1{bottom:164.198667pt;}
.y176{bottom:164.466667pt;}
.y2f{bottom:165.466667pt;}
.y1b7{bottom:169.065333pt;}
.y121{bottom:170.932000pt;}
.y122{bottom:171.265333pt;}
.y123{bottom:171.333333pt;}
.y1f1{bottom:175.532000pt;}
.y1f2{bottom:175.932000pt;}
.y61{bottom:176.466667pt;}
.yac{bottom:177.865333pt;}
.ye9{bottom:177.932000pt;}
.y21d{bottom:178.000000pt;}
.yad{bottom:180.133333pt;}
.yae{bottom:180.198667pt;}
.y175{bottom:182.398667pt;}
.y2c{bottom:183.000000pt;}
.y2b{bottom:183.333333pt;}
.y280{bottom:183.466667pt;}
.y2d{bottom:183.666667pt;}
.y24e{bottom:183.865333pt;}
.y24f{bottom:184.198667pt;}
.y2e{bottom:184.333333pt;}
.y281{bottom:184.732000pt;}
.y1b5{bottom:184.800000pt;}
.y120{bottom:186.065333pt;}
.y1b6{bottom:187.932000pt;}
.ye8{bottom:192.932000pt;}
.yab{bottom:193.598667pt;}
.y60{bottom:194.666667pt;}
.y21c{bottom:195.598667pt;}
.y174{bottom:198.732000pt;}
.y173{bottom:199.000000pt;}
.y172{bottom:199.333333pt;}
.y27f{bottom:199.466667pt;}
.y171{bottom:199.732000pt;}
.y170{bottom:200.666667pt;}
.y11e{bottom:201.065333pt;}
.y28{bottom:201.265333pt;}
.y11f{bottom:201.398667pt;}
.y29{bottom:201.598667pt;}
.y2a{bottom:201.932000pt;}
.y1b3{bottom:203.333333pt;}
.y1b4{bottom:205.532000pt;}
.y5f{bottom:210.065333pt;}
.y21b{bottom:213.598667pt;}
.y21a{bottom:214.198667pt;}
.y27e{bottom:214.532000pt;}
.yaa{bottom:214.666667pt;}
.y11d{bottom:216.133333pt;}
.y16f{bottom:216.598667pt;}
.y24d{bottom:217.466667pt;}
.y16e{bottom:217.598667pt;}
.ye6{bottom:218.265333pt;}
.ye7{bottom:218.598667pt;}
.y1ee{bottom:221.333333pt;}
.y1ef{bottom:221.932000pt;}
.y1f0{bottom:222.000000pt;}
.y1b1{bottom:222.800000pt;}
.y1b2{bottom:225.666667pt;}
.y27{bottom:227.798667pt;}
.y26{bottom:227.865333pt;}
.y279{bottom:228.932000pt;}
.y27a{bottom:229.198667pt;}
.y27b{bottom:229.598667pt;}
.y5e{bottom:229.865333pt;}
.y27c{bottom:230.198667pt;}
.y27d{bottom:230.532000pt;}
.y11c{bottom:231.466667pt;}
.y219{bottom:231.798667pt;}
.ya9{bottom:232.932000pt;}
.y24c{bottom:235.333333pt;}
.y16d{bottom:235.532000pt;}
.y1ed{bottom:239.865333pt;}
.y1b0{bottom:243.000000pt;}
.y278{bottom:244.932000pt;}
.y5d{bottom:247.865333pt;}
.y218{bottom:249.732000pt;}
.ya6{bottom:250.265333pt;}
.ya7{bottom:250.865333pt;}
.ya8{bottom:251.198667pt;}
.ye4{bottom:252.198667pt;}
.y16c{bottom:252.465333pt;}
.ye5{bottom:252.798667pt;}
.y24a{bottom:253.265333pt;}
.y16b{bottom:253.465333pt;}
.y24b{bottom:253.598667pt;}
.y1ec{bottom:257.798667pt;}
.y276{bottom:259.932000pt;}
.y277{bottom:260.265333pt;}
.y1af{bottom:260.598667pt;}
.y24{bottom:264.333333pt;}
.y25{bottom:264.598667pt;}
.y5c{bottom:265.798667pt;}
.y217{bottom:267.932000pt;}
.y216{bottom:268.598667pt;}
.ya5{bottom:269.132000pt;}
.ye3{bottom:270.065333pt;}
.y249{bottom:271.198667pt;}
.y16a{bottom:271.333333pt;}
.y11b{bottom:271.465333pt;}
.y275{bottom:274.065333pt;}
.y1eb{bottom:275.398667pt;}
.y1ae{bottom:278.465333pt;}
.y20{bottom:282.532000pt;}
.y21{bottom:282.865333pt;}
.y22{bottom:283.198667pt;}
.y23{bottom:283.532000pt;}
.y5b{bottom:283.666667pt;}
.y215{bottom:286.132000pt;}
.ya4{bottom:287.333333pt;}
.ye2{bottom:289.000000pt;}
.y169{bottom:289.265333pt;}
.y11a{bottom:289.398667pt;}
.y248{bottom:290.065333pt;}
.y1ea{bottom:293.333333pt;}
.y1ad{bottom:294.465333pt;}
.y1e{bottom:300.465333pt;}
.y1f{bottom:300.798667pt;}
.y5a{bottom:301.865333pt;}
.y214{bottom:303.798667pt;}
.y274{bottom:305.065333pt;}
.ya2{bottom:305.265333pt;}
.ya3{bottom:305.932000pt;}
.y168{bottom:306.532000pt;}
.y119{bottom:307.265333pt;}
.y247{bottom:307.333333pt;}
.y167{bottom:307.798667pt;}
.y1e7{bottom:311.265333pt;}
.y1e8{bottom:311.532000pt;}
.y1e9{bottom:311.598667pt;}
.y1ac{bottom:314.000000pt;}
.ye1{bottom:314.865333pt;}
.y1d{bottom:318.398667pt;}
.y59{bottom:319.865333pt;}
.y273{bottom:320.132000pt;}
.y213{bottom:321.666667pt;}
.ya1{bottom:323.532000pt;}
.y166{bottom:324.798667pt;}
.y118{bottom:325.198667pt;}
.y246{bottom:325.265333pt;}
.y1e6{bottom:329.132000pt;}
.y1a9{bottom:331.598667pt;}
.y1aa{bottom:333.532000pt;}
.y1ab{bottom:333.865333pt;}
.y272{bottom:335.465333pt;}
.y1b{bottom:336.000000pt;}
.y1c{bottom:336.333333pt;}
.y212{bottom:339.333333pt;}
.y245{bottom:340.265333pt;}
.ya0{bottom:342.065333pt;}
.y165{bottom:343.000000pt;}
.y116{bottom:343.132000pt;}
.y117{bottom:343.198667pt;}
.y1e3{bottom:346.798667pt;}
.y1e4{bottom:347.065333pt;}
.y1e5{bottom:347.398667pt;}
.y57{bottom:347.666667pt;}
.y58{bottom:348.000000pt;}
.ye0{bottom:349.398667pt;}
.y1a8{bottom:349.865333pt;}
.y1a{bottom:353.865333pt;}
.y19{bottom:353.932000pt;}
.y18{bottom:354.198667pt;}
.y243{bottom:357.598667pt;}
.y242{bottom:357.932000pt;}
.y211{bottom:358.132000pt;}
.y244{bottom:358.198667pt;}
.y164{bottom:360.265333pt;}
.y113{bottom:360.398667pt;}
.y114{bottom:360.732000pt;}
.y163{bottom:360.932000pt;}
.y115{bottom:361.065333pt;}
.y162{bottom:361.265333pt;}
.y9e{bottom:361.333333pt;}
.y9f{bottom:361.932000pt;}
.y1e0{bottom:364.666667pt;}
.y1e1{bottom:365.000000pt;}
.y1e2{bottom:365.333333pt;}
.y1a1{bottom:366.198667pt;}
.ydd{bottom:366.732000pt;}
.yde{bottom:367.333333pt;}
.y1a3{bottom:367.465333pt;}
.y1a4{bottom:367.798667pt;}
.ydf{bottom:368.000000pt;}
.y1a5{bottom:369.065333pt;}
.y1a2{bottom:369.333333pt;}
.y1a6{bottom:369.666667pt;}
.y1a7{bottom:369.732000pt;}
.y17{bottom:372.132000pt;}
.y210{bottom:375.465333pt;}
.y241{bottom:376.465333pt;}
.y9d{bottom:378.265333pt;}
.y111{bottom:378.932000pt;}
.y161{bottom:379.198667pt;}
.y112{bottom:379.265333pt;}
.y160{bottom:379.865333pt;}
.y1df{bottom:382.932000pt;}
.y271{bottom:383.198667pt;}
.ydc{bottom:385.598667pt;}
.y1a0{bottom:386.000000pt;}
.y55{bottom:388.932000pt;}
.y15{bottom:390.065333pt;}
.y16{bottom:390.398667pt;}
.y56{bottom:390.865333pt;}
.y20f{bottom:393.398667pt;}
.y9c{bottom:393.598667pt;}
.y240{bottom:394.132000pt;}
.y15f{bottom:396.798667pt;}
.y1de{bottom:400.798667pt;}
.y270{bottom:401.065333pt;}
.yd9{bottom:402.865333pt;}
.yda{bottom:403.198667pt;}
.y19f{bottom:403.333333pt;}
.ydb{bottom:403.798667pt;}
.y54{bottom:406.532000pt;}
.y10f{bottom:407.798667pt;}
.y110{bottom:408.132000pt;}
.y9b{bottom:408.333333pt;}
.y23f{bottom:412.333333pt;}
.y15e{bottom:414.666667pt;}
.y14{bottom:416.333333pt;}
.y1dc{bottom:418.132000pt;}
.y1dd{bottom:418.465333pt;}
.y26f{bottom:418.932000pt;}
.y19e{bottom:421.265333pt;}
.yd8{bottom:421.465333pt;}
.y99{bottom:422.065333pt;}
.y9a{bottom:423.732000pt;}
.y53{bottom:424.798667pt;}
.y20e{bottom:429.265333pt;}
.y23e{bottom:430.532000pt;}
.y15d{bottom:432.333333pt;}
.y26e{bottom:435.598667pt;}
.y1db{bottom:436.333333pt;}
.y97{bottom:437.065333pt;}
.y98{bottom:438.666667pt;}
.yd7{bottom:439.333333pt;}
.y19d{bottom:439.465333pt;}
.y10c{bottom:441.065333pt;}
.y10d{bottom:441.333333pt;}
.y51{bottom:441.465333pt;}
.y10e{bottom:441.666667pt;}
.y52{bottom:443.333333pt;}
.y23d{bottom:448.465333pt;}
.y15c{bottom:450.198667pt;}
.y15b{bottom:450.532000pt;}
.y15a{bottom:450.865333pt;}
.y95{bottom:454.065333pt;}
.y26d{bottom:454.532000pt;}
.y1da{bottom:454.598667pt;}
.y13{bottom:456.000000pt;}
.y96{bottom:456.333333pt;}
.yd6{bottom:457.265333pt;}
.y19c{bottom:457.333333pt;}
.y10a{bottom:459.265333pt;}
.y10b{bottom:459.598667pt;}
.y23c{bottom:466.398667pt;}
.y159{bottom:468.132000pt;}
.y94{bottom:469.065333pt;}
.y50{bottom:471.532000pt;}
.y1d9{bottom:472.798667pt;}
.y20d{bottom:475.000000pt;}
.y2a4{bottom:475.132000pt;}
.yd3{bottom:475.198667pt;}
.y19b{bottom:475.333333pt;}
.yd5{bottom:475.465333pt;}
.yd4{bottom:475.532000pt;}
.y109{bottom:476.598667pt;}
.y108{bottom:476.932000pt;}
.y26a{bottom:482.666667pt;}
.y26b{bottom:483.000000pt;}
.y26c{bottom:483.666667pt;}
.y91{bottom:484.132000pt;}
.y92{bottom:486.065333pt;}
.y93{bottom:486.398667pt;}
.y1d8{bottom:490.465333pt;}
.y23b{bottom:492.333333pt;}
.y20c{bottom:492.532000pt;}
.y12{bottom:492.798667pt;}
.y19a{bottom:493.198667pt;}
.yd1{bottom:493.398667pt;}
.yd2{bottom:493.732000pt;}
.y107{bottom:495.132000pt;}
.y8d{bottom:498.532000pt;}
.y8e{bottom:499.465333pt;}
.y8f{bottom:499.532000pt;}
.y90{bottom:500.465333pt;}
.y158{bottom:503.733333pt;}
.y157{bottom:504.265333pt;}
.y156{bottom:504.666667pt;}
.y2a3{bottom:506.465333pt;}
.y2a2{bottom:507.132000pt;}
.y1d7{bottom:508.666667pt;}
.y20b{bottom:510.465333pt;}
.y4c{bottom:511.198667pt;}
.y199{bottom:511.465333pt;}
.yd0{bottom:511.666667pt;}
.y4d{bottom:511.865333pt;}
.y4e{bottom:512.465333pt;}
.y8a{bottom:512.598667pt;}
.y8b{bottom:513.000000pt;}
.y4f{bottom:513.066667pt;}
.y106{bottom:513.400000pt;}
.y8c{bottom:514.865333pt;}
.y153{bottom:519.066667pt;}
.y269{bottom:520.465333pt;}
.y155{bottom:521.265333pt;}
.y154{bottom:521.598667pt;}
.y152{bottom:521.932000pt;}
.y151{bottom:522.198667pt;}
.y150{bottom:522.865333pt;}
.y1d5{bottom:525.932000pt;}
.y1d4{bottom:526.000000pt;}
.y23a{bottom:526.265333pt;}
.y1d6{bottom:526.598667pt;}
.y86{bottom:527.400000pt;}
.y198{bottom:527.733333pt;}
.y20a{bottom:528.400000pt;}
.y87{bottom:529.000000pt;}
.ycf{bottom:529.598667pt;}
.y88{bottom:529.865333pt;}
.y49{bottom:530.066667pt;}
.y89{bottom:530.598667pt;}
.y4a{bottom:531.000000pt;}
.y4b{bottom:531.666667pt;}
.y268{bottom:537.400000pt;}
.y14f{bottom:539.198667pt;}
.y14e{bottom:539.865333pt;}
.y2a1{bottom:540.400000pt;}
.y14d{bottom:540.465333pt;}
.y2a0{bottom:541.066667pt;}
.y85{bottom:543.333333pt;}
.y1d3{bottom:544.265333pt;}
.y239{bottom:544.465333pt;}
.y209{bottom:546.333333pt;}
.y11{bottom:547.198667pt;}
.y197{bottom:547.333333pt;}
.ycd{bottom:547.532000pt;}
.yce{bottom:547.798667pt;}
.y10{bottom:548.132000pt;}
.y48{bottom:548.598667pt;}
.y105{bottom:548.865333pt;}
.y267{bottom:556.000000pt;}
.y29f{bottom:558.333333pt;}
.y29e{bottom:559.000000pt;}
.y29d{bottom:559.333333pt;}
.y29c{bottom:559.666667pt;}
.y1d2{bottom:562.400000pt;}
.y14c{bottom:563.865333pt;}
.y194{bottom:564.265333pt;}
.ycc{bottom:565.733333pt;}
.y195{bottom:566.198667pt;}
.y102{bottom:566.798667pt;}
.y196{bottom:566.800000pt;}
.y103{bottom:567.132000pt;}
.y104{bottom:567.465333pt;}
.y84{bottom:568.333333pt;}
.y266{bottom:573.532000pt;}
.y29b{bottom:575.932000pt;}
.y29a{bottom:576.265333pt;}
.y299{bottom:577.198667pt;}
.y47{bottom:577.466667pt;}
.y236{bottom:579.666667pt;}
.y1d1{bottom:580.398667pt;}
.y237{bottom:580.598667pt;}
.y238{bottom:581.598667pt;}
.y208{bottom:581.865333pt;}
.y193{bottom:582.466667pt;}
.ycb{bottom:583.666667pt;}
.y101{bottom:585.065333pt;}
.y83{bottom:586.532000pt;}
.y265{bottom:591.800000pt;}
.y298{bottom:594.800000pt;}
.y14b{bottom:597.133333pt;}
.y14a{bottom:597.398667pt;}
.y235{bottom:598.198667pt;}
.y191{bottom:598.532000pt;}
.y1d0{bottom:598.598667pt;}
.y207{bottom:599.800000pt;}
.y206{bottom:600.065333pt;}
.y205{bottom:600.133333pt;}
.y192{bottom:600.732000pt;}
.yca{bottom:601.598667pt;}
.y100{bottom:603.000000pt;}
.y82{bottom:603.198667pt;}
.y264{bottom:609.666667pt;}
.y297{bottom:612.732000pt;}
.y149{bottom:615.065333pt;}
.y1cf{bottom:616.198667pt;}
.y204{bottom:618.065333pt;}
.y46{bottom:618.398667pt;}
.y190{bottom:618.932000pt;}
.yc9{bottom:619.800000pt;}
.yff{bottom:620.865333pt;}
.y7e{bottom:622.065333pt;}
.y7f{bottom:623.065333pt;}
.y80{bottom:623.333333pt;}
.y81{bottom:624.000000pt;}
.y263{bottom:627.000000pt;}
.y296{bottom:630.000000pt;}
.y295{bottom:630.333333pt;}
.y294{bottom:630.666667pt;}
.y147{bottom:632.598667pt;}
.y148{bottom:632.666667pt;}
.y145{bottom:632.932000pt;}
.y146{bottom:633.000000pt;}
.y144{bottom:633.265333pt;}
.y233{bottom:633.398667pt;}
.y143{bottom:633.598667pt;}
.y234{bottom:633.732000pt;}
.y1ce{bottom:634.732000pt;}
.y18d{bottom:635.265333pt;}
.y18e{bottom:636.265333pt;}
.y45{bottom:636.333333pt;}
.yc8{bottom:637.732000pt;}
.y18f{bottom:637.865333pt;}
.yfe{bottom:638.865333pt;}
.y7b{bottom:640.000000pt;}
.y7c{bottom:640.333333pt;}
.y7d{bottom:641.000000pt;}
.y262{bottom:644.265333pt;}
.ye{bottom:649.932000pt;}
.yb{bottom:650.265333pt;}
.yc{bottom:650.532000pt;}
.y142{bottom:651.198667pt;}
.y18b{bottom:652.265333pt;}
.y1cd{bottom:652.333333pt;}
.y232{bottom:652.598667pt;}
.y203{bottom:654.198667pt;}
.y44{bottom:654.598667pt;}
.y18c{bottom:655.133333pt;}
.yc7{bottom:656.000000pt;}
.yfd{bottom:657.065333pt;}
.y7a{bottom:658.598667pt;}
.y293{bottom:660.133333pt;}
.yf{bottom:661.000000pt;}
.yd{bottom:661.598667pt;}
.y261{bottom:663.732000pt;}
.y141{bottom:668.466667pt;}
.y140{bottom:668.800000pt;}
.y13f{bottom:669.133333pt;}
.y230{bottom:669.598667pt;}
.y13e{bottom:669.732000pt;}
.y231{bottom:670.532000pt;}
.y1cc{bottom:670.598667pt;}
.y41{bottom:671.532000pt;}
.y42{bottom:672.133333pt;}
.y43{bottom:672.800000pt;}
.y18a{bottom:673.065333pt;}
.yc6{bottom:674.265333pt;}
.yfb{bottom:674.666667pt;}
.yfc{bottom:675.000000pt;}
.y75{bottom:675.466667pt;}
.y76{bottom:676.133333pt;}
.y77{bottom:676.198667pt;}
.y78{bottom:676.466667pt;}
.y79{bottom:677.133333pt;}
.y260{bottom:681.065333pt;}
.y13d{bottom:687.333333pt;}
.y1ca{bottom:688.266667pt;}
.y22f{bottom:688.466667pt;}
.y1cb{bottom:688.800000pt;}
.y202{bottom:690.333333pt;}
.y40{bottom:690.398667pt;}
.y189{bottom:691.266667pt;}
.yc4{bottom:692.133333pt;}
.yc5{bottom:692.466667pt;}
.yf9{bottom:692.865333pt;}
.yfa{bottom:693.266667pt;}
.y74{bottom:694.732000pt;}
.y25f{bottom:699.333333pt;}
.y292{bottom:699.466667pt;}
.y291{bottom:699.800000pt;}
.ya{bottom:701.398667pt;}
.y9{bottom:701.466667pt;}
.y8{bottom:701.732000pt;}
.y7{bottom:701.800000pt;}
.y13c{bottom:704.933333pt;}
.y13b{bottom:705.600000pt;}
.y1c9{bottom:706.466667pt;}
.y22e{bottom:706.666667pt;}
.y201{bottom:708.532000pt;}
.y3f{bottom:708.600000pt;}
.y188{bottom:709.198667pt;}
.yc3{bottom:710.065333pt;}
.yf8{bottom:710.800000pt;}
.y72{bottom:712.266667pt;}
.y73{bottom:713.266667pt;}
.y290{bottom:717.398667pt;}
.y25e{bottom:717.532000pt;}
.y13a{bottom:723.532000pt;}
.y22d{bottom:724.600000pt;}
.y1c8{bottom:724.666667pt;}
.y186{bottom:725.865333pt;}
.y200{bottom:726.532000pt;}
.y3e{bottom:726.865333pt;}
.y187{bottom:728.065333pt;}
.yc2{bottom:728.333333pt;}
.yf7{bottom:728.732000pt;}
.y70{bottom:730.532000pt;}
.y6{bottom:730.865333pt;}
.y71{bottom:731.198667pt;}
.y5{bottom:731.532000pt;}
.y28f{bottom:735.600000pt;}
.y25d{bottom:735.800000pt;}
.y139{bottom:740.800000pt;}
.y138{bottom:741.732000pt;}
.y1c6{bottom:742.266667pt;}
.y1c7{bottom:742.600000pt;}
.y185{bottom:743.800000pt;}
.y3c{bottom:744.532000pt;}
.y1ff{bottom:744.732000pt;}
.y3d{bottom:745.732000pt;}
.yc1{bottom:746.198667pt;}
.y6b{bottom:746.266667pt;}
.yf6{bottom:747.000000pt;}
.y6c{bottom:747.532000pt;}
.y6d{bottom:748.466667pt;}
.y6e{bottom:748.800000pt;}
.y6f{bottom:749.398667pt;}
.y28e{bottom:753.198667pt;}
.y25c{bottom:753.398667pt;}
.y28d{bottom:753.865333pt;}
.y1c5{bottom:760.198667pt;}
.y22c{bottom:760.466667pt;}
.y4{bottom:762.198667pt;}
.y3{bottom:762.532000pt;}
.y1fe{bottom:762.666667pt;}
.y3b{bottom:762.732000pt;}
.y184{bottom:763.266667pt;}
.ybe{bottom:764.133333pt;}
.yc0{bottom:764.198667pt;}
.ybf{bottom:764.466667pt;}
.yf5{bottom:764.865333pt;}
.y6a{bottom:767.065333pt;}
.y137{bottom:767.666667pt;}
.y136{bottom:768.000000pt;}
.y25b{bottom:771.933333pt;}
.y22b{bottom:778.133333pt;}
.y1c4{bottom:778.398667pt;}
.y1fd{bottom:780.600000pt;}
.y1fc{bottom:780.865333pt;}
.y182{bottom:781.198667pt;}
.ybd{bottom:782.398667pt;}
.yf3{bottom:782.865333pt;}
.y28c{bottom:783.000000pt;}
.yf4{bottom:783.133333pt;}
.y28b{bottom:783.333333pt;}
.y183{bottom:783.466667pt;}
.y259{bottom:789.198667pt;}
.y25a{bottom:789.865333pt;}
.y3a{bottom:791.865333pt;}
.y69{bottom:792.666667pt;}
.y2{bottom:796.466667pt;}
.y228{bottom:796.600000pt;}
.y1c3{bottom:796.666667pt;}
.y229{bottom:797.600000pt;}
.y22a{bottom:797.865333pt;}
.y1fb{bottom:798.800000pt;}
.y181{bottom:799.198667pt;}
.ybc{bottom:800.600000pt;}
.y135{bottom:800.933333pt;}
.y134{bottom:801.266667pt;}
.y133{bottom:801.600000pt;}
.y132{bottom:801.865333pt;}
.y258{bottom:807.198667pt;}
.yf2{bottom:811.933333pt;}
.yf1{bottom:812.266667pt;}
.y1c2{bottom:814.600000pt;}
.y180{bottom:817.398667pt;}
.ybb{bottom:818.532000pt;}
.y131{bottom:818.600000pt;}
.y130{bottom:818.865333pt;}
.y12f{bottom:818.933333pt;}
.y12e{bottom:819.198667pt;}
.y12d{bottom:819.532000pt;}
.y12c{bottom:819.865333pt;}
.y1{bottom:826.600000pt;}
.y226{bottom:829.266667pt;}
.y227{bottom:829.600000pt;}
.y1f9{bottom:831.133333pt;}
.y1fa{bottom:831.198667pt;}
.y289{bottom:831.933333pt;}
.y28a{bottom:832.000000pt;}
.y68{bottom:835.800000pt;}
.y257{bottom:840.398667pt;}
.y256{bottom:840.466667pt;}
.y39{bottom:841.466667pt;}
.y1c1{bottom:847.266667pt;}
.y17f{bottom:850.333333pt;}
.yba{bottom:850.532000pt;}
.y12b{bottom:851.865333pt;}
.yf0{bottom:854.865333pt;}
.h15{height:36.622396pt;}
.h1f{height:36.640625pt;}
.h19{height:41.854167pt;}
.h6{height:41.875000pt;}
.h17{height:47.085938pt;}
.h2{height:47.109375pt;}
.h8{height:50.062500pt;}
.hf{height:52.343750pt;}
.h1d{height:53.750000pt;}
.h13{height:55.625000pt;}
.h14{height:57.549479pt;}
.h7{height:57.578125pt;}
.ha{height:59.125000pt;}
.h23{height:61.187500pt;}
.h21{height:62.650125pt;}
.h16{height:62.781250pt;}
.h4{height:62.812500pt;}
.h9{height:64.500000pt;}
.hb{height:66.750000pt;}
.h5{height:68.046875pt;}
.h1b{height:69.875000pt;}
.he{height:72.312500pt;}
.h1e{height:73.244792pt;}
.h11{height:73.281250pt;}
.h3{height:83.750000pt;}
.hd{height:136.093750pt;}
.h1{height:161.312500pt;}
.hc{height:183.562500pt;}
.h12{height:896.000000pt;}
.h22{height:902.666667pt;}
.h0{height:904.000000pt;}
.h1c{height:906.666667pt;}
.h10{height:908.000000pt;}
.h20{height:909.333333pt;}
.h18{height:912.000000pt;}
.h1a{height:914.666667pt;}
.w1{width:585.333333pt;}
.w0{width:592.000000pt;}
.w4{width:594.666667pt;}
.w2{width:600.000000pt;}
.w3{width:602.666667pt;}
.w8{width:604.000000pt;}
.w6{width:605.333333pt;}
.w7{width:606.666667pt;}
.w9{width:608.000000pt;}
.w5{width:612.000000pt;}
.x0{left:0.000000pt;}
.xe7{left:50.266667pt;}
.x83{left:51.200000pt;}
.x86{left:52.800000pt;}
.xd9{left:55.066667pt;}
.xd8{left:56.000000pt;}
.x3{left:57.266667pt;}
.x1c{left:59.200000pt;}
.x26{left:60.800000pt;}
.xc8{left:61.733333pt;}
.x36{left:63.333333pt;}
.x38{left:64.333333pt;}
.x3f{left:65.600000pt;}
.x42{left:67.200000pt;}
.x7e{left:68.466667pt;}
.x7b{left:69.466667pt;}
.x46{left:70.400000pt;}
.x48{left:72.000000pt;}
.x52{left:73.266667pt;}
.xe4{left:78.066667pt;}
.x84{left:79.066667pt;}
.x8a{left:80.000000pt;}
.xdf{left:80.933333pt;}
.x43{left:82.266667pt;}
.xc5{left:83.533333pt;}
.x87{left:84.466667pt;}
.x19{left:85.732000pt;}
.x32{left:86.732000pt;}
.x80{left:88.333333pt;}
.x57{left:89.266667pt;}
.x35{left:90.866667pt;}
.x3a{left:91.866667pt;}
.x6e{left:93.133333pt;}
.x72{left:94.065333pt;}
.x76{left:95.065333pt;}
.x7a{left:96.000000pt;}
.x7f{left:96.933333pt;}
.xd{left:97.933333pt;}
.x47{left:99.200000pt;}
.x14{left:100.133333pt;}
.x1d{left:101.466667pt;}
.xe5{left:102.400000pt;}
.x65{left:104.333333pt;}
.x95{left:105.600000pt;}
.x1e{left:107.200000pt;}
.xdd{left:108.133333pt;}
.x33{left:109.133333pt;}
.x97{left:111.066667pt;}
.xdb{left:112.666667pt;}
.x81{left:114.266667pt;}
.x58{left:115.866667pt;}
.xb1{left:118.400000pt;}
.xb3{left:120.000000pt;}
.xbb{left:123.533333pt;}
.xe0{left:124.466667pt;}
.x5{left:125.466667pt;}
.x44{left:127.333333pt;}
.x56{left:130.266667pt;}
.xee{left:132.466667pt;}
.xef{left:133.466667pt;}
.x41{left:135.333333pt;}
.x3e{left:142.400000pt;}
.x8b{left:144.666667pt;}
.xcc{left:149.133333pt;}
.xa9{left:150.733333pt;}
.x5b{left:152.333333pt;}
.x89{left:153.933333pt;}
.x99{left:157.466667pt;}
.xe6{left:158.400000pt;}
.xde{left:159.666667pt;}
.x9e{left:161.266667pt;}
.xb0{left:163.200000pt;}
.x88{left:165.733333pt;}
.x69{left:169.933333pt;}
.xcd{left:171.533333pt;}
.xe8{left:172.465333pt;}
.x30{left:173.733333pt;}
.x2c{left:175.666667pt;}
.x96{left:177.600000pt;}
.x4{left:178.866667pt;}
.x6a{left:180.465333pt;}
.xb2{left:181.465333pt;}
.xce{left:188.132000pt;}
.x66{left:189.733333pt;}
.x4e{left:195.533333pt;}
.x1{left:198.066667pt;}
.xec{left:199.333333pt;}
.xe{left:201.600000pt;}
.x9{left:204.132000pt;}
.x63{left:207.666667pt;}
.x62{left:208.933333pt;}
.xe2{left:210.533333pt;}
.xcb{left:212.466667pt;}
.x9f{left:214.733333pt;}
.x92{left:216.333333pt;}
.x29{left:221.133333pt;}
.xd5{left:222.400000pt;}
.x5c{left:223.666667pt;}
.x39{left:227.533333pt;}
.xf{left:230.733333pt;}
.xaa{left:232.000000pt;}
.x4f{left:233.266667pt;}
.x6{left:234.266667pt;}
.x7c{left:238.733333pt;}
.xa{left:240.000000pt;}
.x17{left:240.933333pt;}
.xb{left:243.200000pt;}
.x16{left:248.933333pt;}
.x1f{left:249.933333pt;}
.x3c{left:253.133333pt;}
.x7{left:255.066667pt;}
.xab{left:256.933333pt;}
.x50{left:259.200000pt;}
.xad{left:260.133333pt;}
.x34{left:261.733333pt;}
.xd6{left:264.666667pt;}
.xc6{left:266.533333pt;}
.x6b{left:267.533333pt;}
.x2{left:268.466667pt;}
.x45{left:272.933333pt;}
.xe3{left:273.933333pt;}
.xb9{left:277.733333pt;}
.x3d{left:278.733333pt;}
.x51{left:283.200000pt;}
.x67{left:284.800000pt;}
.xb4{left:285.733333pt;}
.xea{left:287.066667pt;}
.x1a{left:288.933333pt;}
.xa8{left:291.533333pt;}
.x2a{left:294.066667pt;}
.x68{left:295.066667pt;}
.xc{left:296.333333pt;}
.x20{left:298.533333pt;}
.x73{left:299.866667pt;}
.x18{left:300.800000pt;}
.x7d{left:303.066667pt;}
.x74{left:304.933333pt;}
.xeb{left:306.266667pt;}
.x64{left:308.800000pt;}
.xc1{left:310.066667pt;}
.x49{left:312.933333pt;}
.xca{left:315.866667pt;}
.xae{left:317.733333pt;}
.x78{left:319.666667pt;}
.x21{left:321.266667pt;}
.x5d{left:322.266667pt;}
.x79{left:324.133333pt;}
.x3b{left:325.466667pt;}
.x59{left:329.933333pt;}
.xf1{left:330.866667pt;}
.x5e{left:332.466667pt;}
.x8e{left:334.066667pt;}
.x2d{left:335.666667pt;}
.x75{left:337.600000pt;}
.x5a{left:339.200000pt;}
.x22{left:341.733333pt;}
.x10{left:343.066667pt;}
.x15{left:346.866667pt;}
.x8c{left:349.466667pt;}
.x2e{left:351.066667pt;}
.x77{left:352.000000pt;}
.xd7{left:353.598667pt;}
.x4a{left:354.533333pt;}
.xa0{left:355.533333pt;}
.x8f{left:358.733333pt;}
.x2b{left:360.000000pt;}
.x8{left:361.598667pt;}
.xb8{left:362.533333pt;}
.x23{left:364.466667pt;}
.x27{left:368.932000pt;}
.xed{left:370.533333pt;}
.x8d{left:372.466667pt;}
.xc2{left:375.333333pt;}
.x11{left:377.265333pt;}
.x4b{left:378.533333pt;}
.x4d{left:380.466667pt;}
.xe9{left:381.466667pt;}
.xaf{left:382.400000pt;}
.x24{left:389.133333pt;}
.xa5{left:390.733333pt;}
.x53{left:396.133333pt;}
.xdc{left:398.400000pt;}
.x6f{left:400.333333pt;}
.xbc{left:401.598667pt;}
.xac{left:402.866667pt;}
.x93{left:405.466667pt;}
.x6c{left:408.000000pt;}
.x25{left:409.600000pt;}
.xcf{left:410.533333pt;}
.x1b{left:412.133333pt;}
.x54{left:414.066667pt;}
.xbf{left:418.266667pt;}
.x70{left:419.866667pt;}
.xd0{left:424.666667pt;}
.xc7{left:425.933333pt;}
.x6d{left:426.866667pt;}
.xa6{left:427.866667pt;}
.x85{left:430.400000pt;}
.xd2{left:434.866667pt;}
.x55{left:437.733333pt;}
.xa7{left:442.533333pt;}
.x94{left:445.133333pt;}
.xd3{left:446.066667pt;}
.x2f{left:449.933333pt;}
.xb5{left:451.533333pt;}
.xd1{left:453.133333pt;}
.xda{left:456.933333pt;}
.x98{left:460.466667pt;}
.x12{left:461.466667pt;}
.x90{left:465.266667pt;}
.xb6{left:466.866667pt;}
.x82{left:468.800000pt;}
.xa1{left:470.066667pt;}
.xa2{left:472.000000pt;}
.xba{left:473.933333pt;}
.x31{left:477.133333pt;}
.x40{left:478.066667pt;}
.x9a{left:480.333333pt;}
.x4c{left:481.266667pt;}
.x5f{left:482.866667pt;}
.x37{left:484.800000pt;}
.x9b{left:488.933333pt;}
.xa3{left:493.466667pt;}
.x9c{left:494.400000pt;}
.x60{left:498.866667pt;}
.xb7{left:499.866667pt;}
.xbe{left:501.133333pt;}
.x9d{left:502.400000pt;}
.xbd{left:503.333333pt;}
.x28{left:505.600000pt;}
.x91{left:506.533333pt;}
.x13{left:508.466667pt;}
.xa4{left:511.066667pt;}
.x71{left:515.533333pt;}
.xd4{left:516.800000pt;}
.xc9{left:522.533333pt;}
.x61{left:523.866667pt;}
.xc3{left:524.800000pt;}
.xf0{left:526.733333pt;}
.xc4{left:532.466667pt;}
.xc0{left:538.533333pt;}
.xe1{left:547.533333pt;}
}




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