
    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_281f4dd0043b8f1374d36bf3.woff')format("woff");}.ff1{font-family:ff1;line-height:0.893000;font-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_c5818810060ab9bf8837d996.woff')format("woff");}.ff2{font-family:ff2;line-height:0.945000;font-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_3c5411f3b618e768df0e5b82.woff')format("woff");}.ff3{font-family:ff3;line-height:0.696000;font-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_f507f0fd61472d98eaa846c2.woff')format("woff");}.ff4{font-family:ff4;line-height:0.696000;font-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_b1efa7e4ab8ed13a593f5735.woff')format("woff");}.ff5{font-family:ff5;line-height:0.717000;font-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_8261724f0a529eb582fe3dce.woff')format("woff");}.ff6{font-family:ff6;line-height:0.900000;font-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_0ccf80777332e05d8c7359ec.woff')format("woff");}.ff7{font-family:ff7;line-height:0.938477;font-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_177c1f2a7a13cac80f7b5351.woff')format("woff");}.ff8{font-family:ff8;line-height:0.938477;font-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_a9ebfec1abceb5154779506a.woff')format("woff");}.ff9{font-family:ff9;line-height:0.938477;font-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_d80214da9b6617e0bdd0db78.woff')format("woff");}.ffa{font-family:ffa;line-height:0.938477;font-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_27e6e868245cb1680febe11a.woff')format("woff");}.ffb{font-family:ffb;line-height:0.938477;font-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_6df90493f1331695b31ebac5.woff')format("woff");}.ffc{font-family:ffc;line-height:0.810000;font-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_3de387e3d33e889b62932a8b.woff')format("woff");}.ffd{font-family:ffd;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.ffe{font-family:sans-serif;visibility:hidden;}
.fff{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff10;src:url('chunks/assets/font_1addf93b391d87a891581968.woff')format("woff");}.ff10{font-family:ff10;line-height:0.705000;font-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_1d4f98d6ef23846e43ab1b63.woff')format("woff");}.ff11{font-family:ff11;line-height:0.635000;font-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_b37debdfa774329d2ef2543a.woff')format("woff");}.ff12{font-family:ff12;line-height:1.000000;font-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_1a81da001d44a1f2c851575d.woff')format("woff");}.ff13{font-family:ff13;line-height:0.482000;font-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_e923772d5ec13a66e086dc37.woff')format("woff");}.ff14{font-family:ff14;line-height:0.535000;font-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_1f9ebf253332765fabd79517.woff')format("woff");}.ff15{font-family:ff15;line-height:0.705000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.ff16{font-family:sans-serif;visibility:hidden;}
.ff17{font-family:sans-serif;visibility:hidden;}
.ff18{font-family:sans-serif;visibility:hidden;}
.ff19{font-family:sans-serif;visibility:hidden;}
.m1{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);}
.m0{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);}
.vf{vertical-align:-24.444000px;}
.v2{vertical-align:-22.854000px;}
.v4{vertical-align:-16.872000px;}
.v9{vertical-align:-13.053832px;}
.v8{vertical-align:-9.648330px;}
.vd{vertical-align:-8.094000px;}
.vc{vertical-align:-5.976000px;}
.v6{vertical-align:-4.779285px;}
.v7{vertical-align:-2.389642px;}
.v5{vertical-align:-1.194821px;}
.v0{vertical-align:0.000000px;}
.ve{vertical-align:9.918000px;}
.v3{vertical-align:21.690000px;}
.v1{vertical-align:23.748000px;}
.va{vertical-align:28.926000px;}
.vb{vertical-align:48.414000px;}
.ls6{letter-spacing:0.000000px;}
.ls11{letter-spacing:0.000564px;}
.ls13{letter-spacing:0.001566px;}
.lsb{letter-spacing:0.002387px;}
.ls10{letter-spacing:0.002481px;}
.ls7{letter-spacing:2.455834px;}
.ls3{letter-spacing:2.964877px;}
.ls0{letter-spacing:2.984915px;}
.ls18{letter-spacing:2.987675px;}
.ls8{letter-spacing:2.988780px;}
.ls5{letter-spacing:2.989200px;}
.ls9{letter-spacing:2.990725px;}
.ls1{letter-spacing:2.990915px;}
.ls12{letter-spacing:7.173269px;}
.lsf{letter-spacing:9.312538px;}
.ls14{letter-spacing:11.442247px;}
.ls2{letter-spacing:11.958532px;}
.lsd{letter-spacing:16.599199px;}
.lse{letter-spacing:16.602538px;}
.ls16{letter-spacing:17.573251px;}
.ls15{letter-spacing:19.001549px;}
.ls4{letter-spacing:20.586658px;}
.lsc{letter-spacing:20.747251px;}
.lsa{letter-spacing:22.911199px;}
.ls17{letter-spacing:23.646648px;}
.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;}
}
.ws13a{word-spacing:-31.633157px;}
.ws2d{word-spacing:-31.047358px;}
.ws139{word-spacing:-19.336952px;}
.ws138{word-spacing:-14.943900px;}
.ws20{word-spacing:-14.920027px;}
.wsbc{word-spacing:-14.337854px;}
.ws13f{word-spacing:-13.588952px;}
.ws37{word-spacing:-11.955150px;}
.wsc7{word-spacing:-8.733435px;}
.ws2{word-spacing:-5.484215px;}
.ws5{word-spacing:-5.479285px;}
.ws4{word-spacing:-5.478922px;}
.wsc8{word-spacing:-4.154954px;}
.ws14f{word-spacing:-0.777083px;}
.ws177{word-spacing:-0.717309px;}
.ws12f{word-spacing:-0.624883px;}
.ws5a{word-spacing:-0.597756px;}
.ws16c{word-spacing:-0.478206px;}
.ws14{word-spacing:-0.430387px;}
.ws113{word-spacing:-0.418429px;}
.wsfd{word-spacing:-0.358654px;}
.ws12e{word-spacing:-0.298878px;}
.wsdf{word-spacing:-0.179327px;}
.ws0{word-spacing:-0.143462px;}
.ws152{word-spacing:-0.119551px;}
.ws170{word-spacing:-0.095641px;}
.ws26{word-spacing:-0.059776px;}
.ws8{word-spacing:-0.053798px;}
.ws196{word-spacing:-0.047821px;}
.ws13b{word-spacing:-0.029888px;}
.ws68{word-spacing:0.000000px;}
.ws13e{word-spacing:0.119551px;}
.ws126{word-spacing:0.239102px;}
.ws1b9{word-spacing:0.286924px;}
.ws9c{word-spacing:0.298878px;}
.ws1a5{word-spacing:0.334744px;}
.ws82{word-spacing:0.418429px;}
.ws184{word-spacing:0.652423px;}
.wsd7{word-spacing:0.657532px;}
.ws89{word-spacing:0.717307px;}
.ws1ad{word-spacing:0.717309px;}
.ws1c1{word-spacing:0.765130px;}
.wsab{word-spacing:0.836858px;}
.ws19c{word-spacing:1.004233px;}
.wse8{word-spacing:1.016185px;}
.ws115{word-spacing:1.075961px;}
.ws16{word-spacing:1.075968px;}
.ws154{word-spacing:1.135736px;}
.ws183{word-spacing:1.291156px;}
.ws100{word-spacing:1.298927px;}
.ws102{word-spacing:1.315063px;}
.ws168{word-spacing:1.338977px;}
.ws166{word-spacing:1.386797px;}
.ws10d{word-spacing:1.494390px;}
.ws1ba{word-spacing:1.578080px;}
.ws84{word-spacing:1.613941px;}
.ws3f{word-spacing:1.733492px;}
.ws167{word-spacing:1.769362px;}
.wsda{word-spacing:1.793268px;}
.wsed{word-spacing:1.853044px;}
.wsef{word-spacing:1.912819px;}
.ws1bd{word-spacing:1.960645px;}
.wsb2{word-spacing:1.972595px;}
.ws12c{word-spacing:1.991416px;}
.ws29{word-spacing:2.092146px;}
.ws1a0{word-spacing:2.151927px;}
.wsa1{word-spacing:2.271473px;}
.ws19f{word-spacing:2.295389px;}
.ws1bf{word-spacing:2.343209px;}
.ws31{word-spacing:2.450800px;}
.ws9a{word-spacing:2.510575px;}
.ws83{word-spacing:2.570351px;}
.ws2c{word-spacing:2.630126px;}
.ws87{word-spacing:2.689902px;}
.ws43{word-spacing:2.809453px;}
.wsf4{word-spacing:2.869229px;}
.ws11a{word-spacing:2.929004px;}
.wsaa{word-spacing:3.108331px;}
.wsaf{word-spacing:3.168107px;}
.ws17b{word-spacing:3.203980px;}
.ws66{word-spacing:3.287658px;}
.ws2a{word-spacing:3.347434px;}
.ws2b{word-spacing:3.371603px;}
.wsb3{word-spacing:3.407209px;}
.ws6c{word-spacing:3.466985px;}
.ws56{word-spacing:3.526760px;}
.ws12d{word-spacing:3.537625px;}
.wsb9{word-spacing:3.586536px;}
.wsae{word-spacing:3.646312px;}
.ws3a{word-spacing:3.706087px;}
.ws15{word-spacing:3.712090px;}
.wsd5{word-spacing:3.825638px;}
.ws39{word-spacing:3.825648px;}
.ws13d{word-spacing:3.832309px;}
.ws136{word-spacing:3.885414px;}
.ws60{word-spacing:3.945190px;}
.ws7b{word-spacing:4.004965px;}
.ws122{word-spacing:4.124516px;}
.ws14e{word-spacing:4.184292px;}
.ws10e{word-spacing:4.244068px;}
.ws4e{word-spacing:4.303843px;}
.ws16f{word-spacing:4.303854px;}
.ws1c5{word-spacing:4.351675px;}
.ws190{word-spacing:4.399495px;}
.wsdc{word-spacing:4.423394px;}
.ws8b{word-spacing:4.483170px;}
.ws18d{word-spacing:4.495136px;}
.ws123{word-spacing:4.542946px;}
.ws4c{word-spacing:4.602721px;}
.ws8a{word-spacing:4.722272px;}
.ws1ae{word-spacing:4.776373px;}
.ws1b8{word-spacing:4.780273px;}
.ws169{word-spacing:4.781983px;}
.ws157{word-spacing:4.782048px;}
.ws38{word-spacing:4.782060px;}
.ws175{word-spacing:4.782269px;}
.ws22{word-spacing:4.841824px;}
.ws5f{word-spacing:4.901599px;}
.ws15c{word-spacing:4.961375px;}
.ws4b{word-spacing:5.021150px;}
.wsfe{word-spacing:5.140702px;}
.wsb7{word-spacing:5.200477px;}
.wsf0{word-spacing:5.260253px;}
.ws4f{word-spacing:5.320028px;}
.ws132{word-spacing:5.379804px;}
.ws7{word-spacing:5.379840px;}
.ws130{word-spacing:5.403042px;}
.wsb1{word-spacing:5.439580px;}
.ws3b{word-spacing:5.499355px;}
.ws173{word-spacing:5.547190px;}
.ws160{word-spacing:5.559131px;}
.ws30{word-spacing:5.618906px;}
.ws140{word-spacing:5.738458px;}
.ws156{word-spacing:5.798233px;}
.ws8c{word-spacing:5.858009px;}
.wsa2{word-spacing:5.913798px;}
.ws24{word-spacing:5.917784px;}
.ws188{word-spacing:5.929754px;}
.ws74{word-spacing:5.961520px;}
.ws33{word-spacing:5.977560px;}
.ws1bc{word-spacing:6.025396px;}
.wscf{word-spacing:6.037336px;}
.ws81{word-spacing:6.097111px;}
.ws90{word-spacing:6.216662px;}
.ws19d{word-spacing:6.216678px;}
.ws198{word-spacing:6.264499px;}
.wsba{word-spacing:6.276438px;}
.ws1b3{word-spacing:6.312319px;}
.wsbb{word-spacing:6.336214px;}
.ws3e{word-spacing:6.395989px;}
.wsf1{word-spacing:6.455765px;}
.ws27{word-spacing:6.515540px;}
.ws86{word-spacing:6.575316px;}
.ws3{word-spacing:6.575340px;}
.ws49{word-spacing:6.635092px;}
.wsff{word-spacing:6.694867px;}
.ws1c{word-spacing:6.724800px;}
.wscc{word-spacing:6.754643px;}
.ws182{word-spacing:6.790525px;}
.ws1a7{word-spacing:6.838346px;}
.wsc2{word-spacing:6.933970px;}
.ws10b{word-spacing:6.966997px;}
.ws106{word-spacing:6.993745px;}
.wsbf{word-spacing:7.053521px;}
.ws1c0{word-spacing:7.077449px;}
.wsd1{word-spacing:7.173072px;}
.wsb{word-spacing:7.262784px;}
.ws164{word-spacing:7.268731px;}
.ws128{word-spacing:7.292623px;}
.ws1a4{word-spacing:7.316552px;}
.ws52{word-spacing:7.352399px;}
.ws50{word-spacing:7.359566px;}
.ws186{word-spacing:7.364372px;}
.ws2e{word-spacing:7.412174px;}
.wsb4{word-spacing:7.531726px;}
.ws59{word-spacing:7.651277px;}
.ws57{word-spacing:7.681043px;}
.ws5e{word-spacing:7.711052px;}
.ws34{word-spacing:7.794758px;}
.ws28{word-spacing:7.830604px;}
.ws162{word-spacing:7.888423px;}
.ws79{word-spacing:7.890379px;}
.ws135{word-spacing:7.950155px;}
.ws6f{word-spacing:8.069706px;}
.ws85{word-spacing:8.129482px;}
.ws1a3{word-spacing:8.177323px;}
.wsfa{word-spacing:8.189257px;}
.ws45{word-spacing:8.249033px;}
.ws161{word-spacing:8.272964px;}
.ws8f{word-spacing:8.308808px;}
.ws9e{word-spacing:8.428360px;}
.ws143{word-spacing:8.488135px;}
.ws149{word-spacing:8.547911px;}
.ws176{word-spacing:8.559887px;}
.ws1c4{word-spacing:8.655529px;}
.ws14a{word-spacing:8.667462px;}
.ws54{word-spacing:8.727238px;}
.wse4{word-spacing:8.846789px;}
.wsb0{word-spacing:8.906564px;}
.wsc3{word-spacing:8.966340px;}
.ws25{word-spacing:9.085891px;}
.ws5b{word-spacing:9.145667px;}
.ws112{word-spacing:9.205442px;}
.ws6e{word-spacing:9.265218px;}
.wsc{word-spacing:9.307123px;}
.ws199{word-spacing:9.325017px;}
.ws7c{word-spacing:9.444545px;}
.ws17c{word-spacing:9.468479px;}
.ws73{word-spacing:9.504320px;}
.ws71{word-spacing:9.523500px;}
.ws88{word-spacing:9.564096px;}
.ws6d{word-spacing:9.623872px;}
.ws4a{word-spacing:9.683647px;}
.wsd4{word-spacing:9.803198px;}
.ws118{word-spacing:9.862974px;}
.ws116{word-spacing:9.882317px;}
.ws191{word-spacing:9.898864px;}
.ws32{word-spacing:9.922750px;}
.ws2f{word-spacing:9.982525px;}
.ws181{word-spacing:9.994505px;}
.ws44{word-spacing:10.042301px;}
.ws11{word-spacing:10.180704px;}
.ws17f{word-spacing:10.185788px;}
.ws12{word-spacing:10.221696px;}
.ws69{word-spacing:10.279720px;}
.ws11d{word-spacing:10.281403px;}
.ws6b{word-spacing:10.341179px;}
.ws9f{word-spacing:10.400954px;}
.wsac{word-spacing:10.460730px;}
.ws1ab{word-spacing:10.472711px;}
.ws1e{word-spacing:10.490688px;}
.ws63{word-spacing:10.520506px;}
.ws13{word-spacing:10.544486px;}
.ws134{word-spacing:10.640057px;}
.wse5{word-spacing:10.699832px;}
.ws19{word-spacing:10.705882px;}
.ws7f{word-spacing:10.819384px;}
.wse9{word-spacing:10.938935px;}
.ws10{word-spacing:10.974874px;}
.wseb{word-spacing:10.998710px;}
.ws16e{word-spacing:11.046559px;}
.ws119{word-spacing:11.058486px;}
.wsd3{word-spacing:11.118262px;}
.wsd2{word-spacing:11.138683px;}
.ws1a1{word-spacing:11.142200px;}
.ws7d{word-spacing:11.178037px;}
.ws1b0{word-spacing:11.190020px;}
.wse0{word-spacing:11.237813px;}
.ws67{word-spacing:11.297588px;}
.ws8d{word-spacing:11.357364px;}
.ws16d{word-spacing:11.429123px;}
.ws129{word-spacing:11.476915px;}
.ws7a{word-spacing:11.596466px;}
.ws19b{word-spacing:11.620406px;}
.ws64{word-spacing:11.656242px;}
.ws15d{word-spacing:11.716018px;}
.ws14c{word-spacing:11.775793px;}
.ws17{word-spacing:11.781850px;}
.ws171{word-spacing:11.811688px;}
.ws7e{word-spacing:11.835569px;}
.ws21{word-spacing:11.895344px;}
.ws41{word-spacing:11.955120px;}
.ws18b{word-spacing:12.050791px;}
.ws8e{word-spacing:12.074671px;}
.ws189{word-spacing:12.078430px;}
.ws144{word-spacing:12.194222px;}
.wsf3{word-spacing:12.253998px;}
.wsd6{word-spacing:12.313774px;}
.ws19a{word-spacing:12.337715px;}
.ws103{word-spacing:12.373549px;}
.ws55{word-spacing:12.433325px;}
.ws125{word-spacing:12.493100px;}
.ws185{word-spacing:12.576818px;}
.ws1a{word-spacing:12.588826px;}
.ws12a{word-spacing:12.612652px;}
.ws1af{word-spacing:12.624638px;}
.wsa0{word-spacing:12.672427px;}
.ws1c2{word-spacing:12.672459px;}
.wsce{word-spacing:12.791978px;}
.ws178{word-spacing:12.815921px;}
.wsfc{word-spacing:12.851754px;}
.ws180{word-spacing:12.959383px;}
.ws1a6{word-spacing:13.007203px;}
.wsd{word-spacing:13.019213px;}
.ws147{word-spacing:13.031081px;}
.ws1aa{word-spacing:13.055024px;}
.ws145{word-spacing:13.090856px;}
.ws9{word-spacing:13.126810px;}
.wsf7{word-spacing:13.150632px;}
.ws187{word-spacing:13.198486px;}
.ws137{word-spacing:13.210408px;}
.ws165{word-spacing:13.246306px;}
.ws197{word-spacing:13.294127px;}
.ws5d{word-spacing:13.449510px;}
.ws1bb{word-spacing:13.485409px;}
.wsf5{word-spacing:13.509286px;}
.ws114{word-spacing:13.569061px;}
.ws40{word-spacing:13.628837px;}
.ws105{word-spacing:13.688612px;}
.ws19e{word-spacing:13.724512px;}
.wsa8{word-spacing:13.748388px;}
.ws53{word-spacing:13.808164px;}
.ws9d{word-spacing:13.867939px;}
.wse3{word-spacing:13.927715px;}
.ws3c{word-spacing:14.032943px;}
.ws3d{word-spacing:14.039814px;}
.ws23{word-spacing:14.047266px;}
.wsd8{word-spacing:14.107042px;}
.ws76{word-spacing:14.166817px;}
.ws1be{word-spacing:14.250539px;}
.ws1{word-spacing:14.346180px;}
.ws1ac{word-spacing:14.394001px;}
.ws98{word-spacing:14.465695px;}
.ws42{word-spacing:14.525471px;}
.wscb{word-spacing:14.585246px;}
.ws61{word-spacing:14.645022px;}
.ws192{word-spacing:14.728745px;}
.ws93{word-spacing:14.884124px;}
.ws18{word-spacing:14.902157px;}
.ws12b{word-spacing:14.943025px;}
.ws148{word-spacing:15.003676px;}
.wsa5{word-spacing:15.063451px;}
.ws14b{word-spacing:15.183002px;}
.ws78{word-spacing:15.242778px;}
.ws80{word-spacing:15.302554px;}
.ws110{word-spacing:15.362329px;}
.wsa3{word-spacing:15.541656px;}
.ws35{word-spacing:15.732977px;}
.ws48{word-spacing:15.840534px;}
.ws172{word-spacing:15.876439px;}
.ws1b6{word-spacing:16.019901px;}
.wsd0{word-spacing:16.139412px;}
.ws99{word-spacing:16.258963px;}
.ws1c6{word-spacing:16.259004px;}
.wse{word-spacing:16.300915px;}
.wsa4{word-spacing:16.318739px;}
.ws18f{word-spacing:16.354645px;}
.ws10f{word-spacing:16.438290px;}
.ws1b7{word-spacing:16.450286px;}
.wsf6{word-spacing:16.498066px;}
.wsf{word-spacing:16.516109px;}
.ws193{word-spacing:16.545928px;}
.ws16a{word-spacing:16.689389px;}
.wsc5{word-spacing:16.737168px;}
.ws91{word-spacing:16.796944px;}
.ws11b{word-spacing:16.856719px;}
.wsdb{word-spacing:17.095822px;}
.ws65{word-spacing:17.215373px;}
.ws15f{word-spacing:17.275148px;}
.wsb8{word-spacing:17.394700px;}
.ws17a{word-spacing:17.454519px;}
.wse2{word-spacing:17.633802px;}
.wsf9{word-spacing:17.698220px;}
.ws16b{word-spacing:17.741443px;}
.wsa6{word-spacing:17.753353px;}
.ws101{word-spacing:17.810071px;}
.ws174{word-spacing:17.837084px;}
.wsc1{word-spacing:17.872904px;}
.ws1f{word-spacing:17.932680px;}
.ws1b{word-spacing:17.968666px;}
.ws124{word-spacing:17.992456px;}
.ws11f{word-spacing:18.052231px;}
.ws1b4{word-spacing:18.219649px;}
.ws146{word-spacing:18.231558px;}
.wsa{word-spacing:18.345254px;}
.ws77{word-spacing:18.351109px;}
.wsee{word-spacing:18.392071px;}
.wsa7{word-spacing:18.530436px;}
.ws75{word-spacing:18.590212px;}
.ws15b{word-spacing:18.649987px;}
.wsad{word-spacing:18.709763px;}
.ws1a8{word-spacing:18.745675px;}
.ws6{word-spacing:18.775642px;}
.wsb5{word-spacing:18.889090px;}
.wsfb{word-spacing:19.068416px;}
.ws62{word-spacing:19.187968px;}
.ws94{word-spacing:19.247743px;}
.ws97{word-spacing:19.307519px;}
.wsc0{word-spacing:19.427070px;}
.wsa9{word-spacing:19.666172px;}
.ws159{word-spacing:19.725948px;}
.wsec{word-spacing:19.785724px;}
.ws163{word-spacing:19.797728px;}
.wsf2{word-spacing:19.988071px;}
.wsde{word-spacing:20.084602px;}
.ws1a2{word-spacing:20.084652px;}
.ws9b{word-spacing:20.204153px;}
.ws15a{word-spacing:20.323704px;}
.wsd9{word-spacing:20.330071px;}
.wse6{word-spacing:20.342071px;}
.ws96{word-spacing:20.383480px;}
.ws1c3{word-spacing:20.562858px;}
.ws1b5{word-spacing:20.706320px;}
.ws127{word-spacing:20.861684px;}
.wsdd{word-spacing:20.960071px;}
.ws142{word-spacing:20.981236px;}
.ws14d{word-spacing:21.160562px;}
.ws18e{word-spacing:21.184526px;}
.ws17d{word-spacing:21.375808px;}
.ws13c{word-spacing:21.702763px;}
.ws131{word-spacing:21.896071px;}
.ws95{word-spacing:22.116972px;}
.wsc4{word-spacing:22.296299px;}
.wsb6{word-spacing:22.356074px;}
.ws109{word-spacing:22.472071px;}
.ws92{word-spacing:22.535401px;}
.wse1{word-spacing:22.595177px;}
.ws107{word-spacing:22.894055px;}
.ws4d{word-spacing:23.036071px;}
.ws1b1{word-spacing:23.049529px;}
.ws46{word-spacing:23.133157px;}
.wse7{word-spacing:23.192933px;}
.wscd{word-spacing:23.276071px;}
.ws10c{word-spacing:23.474071px;}
.ws51{word-spacing:23.858071px;}
.ws1d{word-spacing:23.886490px;}
.wsc6{word-spacing:23.910240px;}
.ws195{word-spacing:23.910300px;}
.ws18a{word-spacing:23.958121px;}
.ws58{word-spacing:24.176071px;}
.ws70{word-spacing:24.590071px;}
.ws1a9{word-spacing:24.962353px;}
.ws111{word-spacing:25.748071px;}
.ws120{word-spacing:25.882835px;}
.ws72{word-spacing:26.024071px;}
.ws18c{word-spacing:26.062227px;}
.ws117{word-spacing:26.384071px;}
.ws6a{word-spacing:26.810071px;}
.wsca{word-spacing:26.888071px;}
.wsea{word-spacing:27.476071px;}
.wsf8{word-spacing:28.034756px;}
.ws17e{word-spacing:28.070692px;}
.ws15e{word-spacing:28.214071px;}
.ws194{word-spacing:28.453257px;}
.ws104{word-spacing:28.880071px;}
.ws121{word-spacing:29.050942px;}
.ws1b2{word-spacing:29.361848px;}
.ws179{word-spacing:29.792234px;}
.ws141{word-spacing:29.828024px;}
.ws5c{word-spacing:29.966071px;}
.ws47{word-spacing:30.724658px;}
.ws11e{word-spacing:34.523058px;}
.ws158{word-spacing:62.353394px;}
.ws10a{word-spacing:66.757009px;}
.ws150{word-spacing:69.904979px;}
.ws36{word-spacing:86.650927px;}
.ws151{word-spacing:87.478244px;}
.wsbd{word-spacing:97.950835px;}
.wsbe{word-spacing:100.340478px;}
.ws155{word-spacing:125.368119px;}
.ws133{word-spacing:210.638148px;}
.ws153{word-spacing:215.271342px;}
.ws11c{word-spacing:407.379101px;}
.ws108{word-spacing:502.243542px;}
.wsc9{word-spacing:709.157929px;}
._c{margin-left:-3085.265978px;}
._a{margin-left:-19.632699px;}
._1c{margin-left:-7.077374px;}
._0{margin-left:-5.308087px;}
._7{margin-left:-3.570631px;}
._4{margin-left:-2.301369px;}
._5{margin-left:-1.075968px;}
._9{width:2.106525px;}
._1{width:3.868445px;}
._3{width:10.959096px;}
._1e{width:15.111310px;}
._d{width:17.574026px;}
._b{width:19.247743px;}
._1b{width:20.258084px;}
._1d{width:21.997476px;}
._2{width:23.013690px;}
._8{width:25.446643px;}
._11{width:27.437000px;}
._10{width:29.887800px;}
._12{width:35.387162px;}
._6{width:36.866927px;}
._1a{width:137.164808px;}
._13{width:146.900015px;}
._19{width:148.972064px;}
._14{width:188.962735px;}
._16{width:199.981004px;}
._18{width:204.379784px;}
._15{width:221.271232px;}
._17{width:226.138310px;}
._f{width:279.870936px;}
._e{width:283.455400px;}
.fc2{color:transparent;}
.fc1{color:rgb(0,128,0);}
.fc3{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fsa{font-size:13.507662px;}
.fsd{font-size:14.468231px;}
.fsc{font-size:14.472495px;}
.fsb{font-size:14.954912px;}
.fs8{font-size:16.727497px;}
.fs9{font-size:17.366994px;}
.fs7{font-size:19.117139px;}
.fsf{font-size:20.654277px;}
.fse{font-size:22.129582px;}
.fs1b{font-size:24.742080px;}
.fs13{font-size:25.106400px;}
.fs18{font-size:25.658640px;}
.fs16{font-size:27.198600px;}
.fs14{font-size:29.290800px;}
.fs1c{font-size:29.690496px;}
.fs15{font-size:29.887800px;}
.fs19{font-size:29.935080px;}
.fs11{font-size:30.597060px;}
.fs12{font-size:33.475200px;}
.fs17{font-size:34.211520px;}
.fs3{font-size:35.865600px;}
.fs1a{font-size:37.113120px;}
.fs10{font-size:37.657920px;}
.fs6{font-size:41.842800px;}
.fs2{font-size:47.820600px;}
.fs4{font-size:53.798400px;}
.fs5{font-size:59.775600px;}
.fs1{font-size:65.753400px;}
.fs0{font-size:143.461800px;}
.y0{bottom:0.000000px;}
.y192{bottom:5.627862px;}
.y19d{bottom:5.644287px;}
.y15c{bottom:9.268119px;}
.y126{bottom:10.426169px;}
.y191{bottom:16.577887px;}
.y19c{bottom:17.201867px;}
.y15b{bottom:19.982471px;}
.ybc{bottom:20.204086px;}
.y125{bottom:22.479278px;}
.ye7{bottom:22.785850px;}
.y19e{bottom:23.753847px;}
.y1a2{bottom:25.615140px;}
.ybb{bottom:26.178192px;}
.ye6{bottom:27.127599px;}
.yf7{bottom:28.333640px;}
.yfe{bottom:29.539681px;}
.y193{bottom:30.100090px;}
.ye5{bottom:31.710555px;}
.y127{bottom:32.072669px;}
.yf6{bottom:32.916597px;}
.y186{bottom:35.845107px;}
.y18a{bottom:36.278258px;}
.ye4{bottom:36.293512px;}
.y163{bottom:36.543542px;}
.yf5{bottom:37.258345px;}
.y15d{bottom:39.085402px;}
.yfb{bottom:39.911636px;}
.y12b{bottom:40.460567px;}
.y19f{bottom:41.568144px;}
.y10e{bottom:43.368567px;}
.y194{bottom:44.590807px;}
.yc1{bottom:45.594037px;}
.y162{bottom:47.290585px;}
.y12a{bottom:48.689594px;}
.ye3{bottom:49.077550px;}
.y12e{bottom:50.330693px;}
.ye2{bottom:53.660507px;}
.y185{bottom:55.286875px;}
.y189{bottom:55.720026px;}
.ye1{bottom:58.002255px;}
.y161{bottom:58.037628px;}
.y195{bottom:59.081524px;}
.yf4{bottom:64.514878px;}
.y15e{bottom:65.007760px;}
.yfd{bottom:65.720919px;}
.y10d{bottom:66.604629px;}
.yc6{bottom:67.698229px;}
.y12c{bottom:68.431786px;}
.y160{bottom:68.572182px;}
.ye0{bottom:68.856627px;}
.yf3{bottom:69.097835px;}
.y110{bottom:70.661719px;}
.y128{bottom:72.336120px;}
.yc3{bottom:72.477514px;}
.yc5{bottom:72.776219px;}
.ydf{bottom:73.198375px;}
.yf2{bottom:73.439584px;}
.y198{bottom:74.102943px;}
.y184{bottom:74.728644px;}
.y188{bottom:75.161795px;}
.yfa{bottom:76.092874px;}
.y1a0{bottom:77.196739px;}
.yde{bottom:77.781332px;}
.yc2{bottom:79.347736px;}
.yc4{bottom:79.646441px;}
.ydd{bottom:82.364289px;}
.y1a5{bottom:82.819603px;}
.y197{bottom:85.086378px;}
.y15f{bottom:90.930118px;}
.y1a4{bottom:93.513787px;}
.y183{bottom:94.170412px;}
.y187{bottom:94.603563px;}
.y10c{bottom:95.004259px;}
.y196{bottom:95.852650px;}
.y12d{bottom:99.666463px;}
.ye9{bottom:99.731283px;}
.yf1{bottom:100.696116px;}
.yc0{bottom:100.854517px;}
.yf9{bottom:101.902158px;}
.y1a3{bottom:103.998565px;}
.ye8{bottom:104.314240px;}
.yfc{bottom:104.919047px;}
.yf0{bottom:105.279073px;}
.yef{bottom:109.620822px;}
.yf8{bottom:112.274113px;}
.y129{bottom:112.599571px;}
.y1a1{bottom:112.825335px;}
.y5c{bottom:113.332500px;}
.ybd{bottom:113.698845px;}
.y221{bottom:117.817500px;}
.ybe{bottom:121.763888px;}
.yee{bottom:122.646068px;}
.y1e8{bottom:126.783000px;}
.yed{bottom:127.229025px;}
.ydc{bottom:128.917482px;}
.y5b{bottom:131.265000px;}
.y103{bottom:131.266500px;}
.yec{bottom:135.671313px;}
.y1e7{bottom:140.232000px;}
.y34{bottom:140.865000px;}
.ybf{bottom:143.270670px;}
.y220{bottom:144.715500px;}
.y10f{bottom:148.852910px;}
.y5a{bottom:149.197500px;}
.y102{bottom:149.199000px;}
.yeb{bottom:152.797100px;}
.y159{bottom:152.938500px;}
.y1e6{bottom:153.682500px;}
.y33{bottom:155.659500px;}
.yea{bottom:157.380056px;}
.y21f{bottom:158.166000px;}
.ydb{bottom:164.857512px;}
.yc9{bottom:165.972273px;}
.y32{bottom:166.234500px;}
.yb9{bottom:167.130000px;}
.y59{bottom:167.131500px;}
.y1e5{bottom:167.607000px;}
.y158{bottom:170.871000px;}
.yc8{bottom:171.050263px;}
.y21e{bottom:171.615000px;}
.yc7{bottom:177.920485px;}
.y1e4{bottom:181.057500px;}
.y31{bottom:183.903000px;}
.yb8{bottom:185.062500px;}
.y58{bottom:185.064000px;}
.y8f{bottom:185.242500px;}
.y10b{bottom:185.366721px;}
.y157{bottom:188.803500px;}
.y30{bottom:194.479500px;}
.y1e3{bottom:194.506500px;}
.y21d{bottom:198.514500px;}
.y57{bottom:202.996500px;}
.y8e{bottom:203.175000px;}
.y1b2{bottom:203.382000px;}
.y156{bottom:206.736000px;}
.y2f{bottom:207.928500px;}
.y1e2{bottom:207.955500px;}
.y21c{bottom:211.963500px;}
.y56{bottom:220.929000px;}
.y8d{bottom:221.109000px;}
.y1b1{bottom:221.314500px;}
.y2e{bottom:221.377500px;}
.y1e1{bottom:221.881500px;}
.y155{bottom:224.668500px;}
.y21b{bottom:225.414000px;}
.y1e0{bottom:235.332000px;}
.y55{bottom:238.861500px;}
.y101{bottom:238.863000px;}
.y8c{bottom:239.041500px;}
.y1b0{bottom:239.247000px;}
.y154{bottom:242.601000px;}
.y2d{bottom:247.630500px;}
.y1df{bottom:248.781000px;}
.y21a{bottom:252.312000px;}
.y54{bottom:256.794000px;}
.y123{bottom:256.795500px;}
.y8b{bottom:256.974000px;}
.y1af{bottom:257.179500px;}
.y153{bottom:260.535000px;}
.y1de{bottom:262.230000px;}
.y2c{bottom:265.563000px;}
.y219{bottom:265.762500px;}
.yb7{bottom:274.726500px;}
.y53{bottom:274.728000px;}
.y8a{bottom:274.906500px;}
.y1ae{bottom:275.112000px;}
.y1dd{bottom:276.156000px;}
.y100{bottom:277.446000px;}
.y152{bottom:278.467500px;}
.y218{bottom:279.211500px;}
.y2b{bottom:283.495500px;}
.y1dc{bottom:289.606500px;}
.yb6{bottom:292.659000px;}
.y52{bottom:292.660500px;}
.y89{bottom:292.839000px;}
.y1ad{bottom:293.046000px;}
.yff{bottom:295.378500px;}
.y151{bottom:296.400000px;}
.y122{bottom:298.369500px;}
.y2a{bottom:301.428000px;}
.y1db{bottom:303.055500px;}
.y217{bottom:306.111000px;}
.y51{bottom:310.593000px;}
.y88{bottom:310.773000px;}
.y1ac{bottom:310.978500px;}
.y1da{bottom:316.504500px;}
.y150{bottom:318.072000px;}
.y29{bottom:319.360500px;}
.y216{bottom:319.560000px;}
.yda{bottom:320.843389px;}
.y121{bottom:327.808500px;}
.y50{bottom:328.525500px;}
.y87{bottom:328.705500px;}
.y1ab{bottom:328.911000px;}
.y1d9{bottom:329.955000px;}
.y215{bottom:333.010500px;}
.y14f{bottom:336.004500px;}
.y28{bottom:337.294500px;}
.y1d8{bottom:343.404000px;}
.y120{bottom:345.741000px;}
.y4f{bottom:346.458000px;}
.y182{bottom:346.459500px;}
.y86{bottom:346.638000px;}
.y1aa{bottom:346.843500px;}
.yb5{bottom:347.734500px;}
.y14e{bottom:353.937000px;}
.y27{bottom:355.227000px;}
.y1d7{bottom:357.330000px;}
.y214{bottom:359.908500px;}
.y11f{bottom:363.673500px;}
.y4e{bottom:364.390500px;}
.y181{bottom:364.392000px;}
.y85{bottom:364.570500px;}
.y1a9{bottom:364.776000px;}
.yb4{bottom:365.667000px;}
.y1d6{bottom:370.779000px;}
.y14d{bottom:371.871000px;}
.y26{bottom:373.159500px;}
.y213{bottom:373.359000px;}
.y11e{bottom:381.606000px;}
.y4d{bottom:382.324500px;}
.y84{bottom:382.503000px;}
.y1a8{bottom:382.708500px;}
.yb3{bottom:383.601000px;}
.y1d5{bottom:384.229500px;}
.y212{bottom:386.808000px;}
.y14c{bottom:389.803500px;}
.y25{bottom:391.092000px;}
.y1d4{bottom:398.154000px;}
.y11d{bottom:399.538500px;}
.y4c{bottom:400.257000px;}
.y83{bottom:400.435500px;}
.yb2{bottom:401.533500px;}
.y14b{bottom:407.736000px;}
.y24{bottom:409.024500px;}
.y1d3{bottom:411.604500px;}
.y211{bottom:413.707500px;}
.y11c{bottom:417.471000px;}
.y4b{bottom:418.189500px;}
.y82{bottom:418.369500px;}
.yb1{bottom:419.466000px;}
.y1d2{bottom:425.053500px;}
.y14a{bottom:425.668500px;}
.y23{bottom:426.957000px;}
.y210{bottom:427.156500px;}
.y1a7{bottom:434.844000px;}
.y11b{bottom:435.405000px;}
.y4a{bottom:436.122000px;}
.y81{bottom:436.302000px;}
.y180{bottom:436.555500px;}
.yb0{bottom:437.398500px;}
.y1d1{bottom:438.504000px;}
.y20f{bottom:440.607000px;}
.y149{bottom:443.601000px;}
.y22{bottom:444.891000px;}
.y1d0{bottom:452.428500px;}
.y1a6{bottom:452.776500px;}
.y11a{bottom:453.337500px;}
.y49{bottom:454.054500px;}
.y20e{bottom:454.056000px;}
.y80{bottom:454.234500px;}
.y17f{bottom:454.489500px;}
.yaf{bottom:455.331000px;}
.y148{bottom:461.533500px;}
.y21{bottom:462.823500px;}
.y1cf{bottom:465.879000px;}
.y20d{bottom:467.505000px;}
.y119{bottom:471.270000px;}
.y48{bottom:471.988500px;}
.y7f{bottom:472.167000px;}
.y17e{bottom:472.422000px;}
.yae{bottom:473.265000px;}
.y19b{bottom:474.295500px;}
.y1ce{bottom:479.328000px;}
.y147{bottom:479.467500px;}
.y20{bottom:480.756000px;}
.y20c{bottom:480.955500px;}
.y118{bottom:489.202500px;}
.y47{bottom:489.921000px;}
.y7e{bottom:490.099500px;}
.y17d{bottom:490.354500px;}
.yad{bottom:491.197500px;}
.y1cd{bottom:492.778500px;}
.y20b{bottom:494.404500px;}
.y146{bottom:497.400000px;}
.y1f{bottom:498.688500px;}
.y1cc{bottom:506.703000px;}
.y117{bottom:507.135000px;}
.y46{bottom:507.853500px;}
.y7d{bottom:508.032000px;}
.y17c{bottom:508.287000px;}
.yac{bottom:509.130000px;}
.y1e{bottom:516.621000px;}
.y1cb{bottom:520.153500px;}
.y145{bottom:521.284500px;}
.y20a{bottom:521.304000px;}
.y116{bottom:525.067500px;}
.y45{bottom:525.786000px;}
.y7c{bottom:525.966000px;}
.y17b{bottom:526.219500px;}
.yab{bottom:527.062500px;}
.yd9{bottom:528.109500px;}
.y1ca{bottom:533.602500px;}
.y209{bottom:534.753000px;}
.y1d{bottom:538.785000px;}
.y115{bottom:543.001500px;}
.y44{bottom:543.718500px;}
.y7b{bottom:543.898500px;}
.y17a{bottom:544.153500px;}
.yaa{bottom:544.995000px;}
.yd8{bottom:546.042000px;}
.y1c9{bottom:547.528500px;}
.y208{bottom:548.202000px;}
.y144{bottom:552.327000px;}
.y114{bottom:560.934000px;}
.y1c8{bottom:560.977500px;}
.y43{bottom:561.651000px;}
.y207{bottom:561.652500px;}
.y7a{bottom:561.831000px;}
.y179{bottom:562.086000px;}
.ya9{bottom:562.927500px;}
.y1c{bottom:568.105500px;}
.y143{bottom:570.259500px;}
.y1c7{bottom:574.428000px;}
.yd7{bottom:574.842000px;}
.y206{bottom:575.101500px;}
.y113{bottom:578.866500px;}
.y42{bottom:579.585000px;}
.y79{bottom:579.763500px;}
.y178{bottom:580.018500px;}
.ya8{bottom:580.861500px;}
.y1b{bottom:583.048500px;}
.y142{bottom:588.192000px;}
.y1c6{bottom:588.352500px;}
.y205{bottom:588.552000px;}
.yd6{bottom:592.774500px;}
.y112{bottom:596.799000px;}
.y1a{bottom:597.517500px;}
.y78{bottom:597.696000px;}
.y177{bottom:597.951000px;}
.ya7{bottom:598.794000px;}
.y1c5{bottom:601.803000px;}
.y204{bottom:602.001000px;}
.y141{bottom:606.124500px;}
.yd5{bottom:610.707000px;}
.y19{bottom:612.462000px;}
.y1c4{bottom:615.252000px;}
.y41{bottom:615.450000px;}
.y77{bottom:615.628500px;}
.y176{bottom:615.883500px;}
.ya6{bottom:616.726500px;}
.y140{bottom:624.058500px;}
.y19a{bottom:624.909000px;}
.y18{bottom:627.405000px;}
.yd4{bottom:628.641000px;}
.y203{bottom:628.900500px;}
.y111{bottom:632.565000px;}
.y40{bottom:633.382500px;}
.y76{bottom:633.562500px;}
.ya5{bottom:634.659000px;}
.y175{bottom:640.041000px;}
.y13f{bottom:641.991000px;}
.y17{bottom:642.349500px;}
.y1c3{bottom:642.586500px;}
.y199{bottom:642.841500px;}
.yd3{bottom:646.573500px;}
.y3f{bottom:651.315000px;}
.y75{bottom:651.495000px;}
.ya4{bottom:652.591500px;}
.y10a{bottom:654.084221px;}
.y202{bottom:655.798500px;}
.y16{bottom:657.292500px;}
.y13e{bottom:659.923500px;}
.y190{bottom:664.360500px;}
.yd2{bottom:664.506000px;}
.y3e{bottom:669.247500px;}
.y201{bottom:669.249000px;}
.y74{bottom:669.427500px;}
.ya3{bottom:670.524000px;}
.y174{bottom:671.746500px;}
.y15{bottom:672.237000px;}
.y13d{bottom:677.856000px;}
.y1c2{bottom:677.892000px;}
.yd1{bottom:682.438500px;}
.y200{bottom:682.698000px;}
.y14{bottom:687.181500px;}
.y73{bottom:687.360000px;}
.ya2{bottom:688.458000px;}
.y173{bottom:689.680500px;}
.y13c{bottom:695.788500px;}
.y1c1{bottom:695.824500px;}
.y1ff{bottom:696.148500px;}
.yd0{bottom:700.371000px;}
.y13{bottom:702.124500px;}
.y3d{bottom:705.114000px;}
.y72{bottom:705.292500px;}
.ya1{bottom:706.390500px;}
.y172{bottom:707.613000px;}
.y1fe{bottom:709.597500px;}
.y13b{bottom:713.721000px;}
.y1c0{bottom:713.757000px;}
.y12{bottom:717.069000px;}
.ycf{bottom:718.303500px;}
.y3c{bottom:723.046500px;}
.y71{bottom:723.405000px;}
.y171{bottom:725.545500px;}
.y13a{bottom:731.655000px;}
.y1bf{bottom:731.689500px;}
.y11{bottom:732.013500px;}
.yce{bottom:736.237500px;}
.y1fd{bottom:736.497000px;}
.ya0{bottom:736.692000px;}
.y3b{bottom:740.979000px;}
.y70{bottom:741.337500px;}
.y16f{bottom:743.478000px;}
.y10{bottom:746.956500px;}
.y170{bottom:747.109500px;}
.y139{bottom:749.587500px;}
.y1be{bottom:749.622000px;}
.y1fc{bottom:749.946000px;}
.ycd{bottom:754.170000px;}
.y3a{bottom:758.911500px;}
.y6f{bottom:759.270000px;}
.yf{bottom:761.901000px;}
.y1fb{bottom:763.395000px;}
.y16e{bottom:764.032500px;}
.y138{bottom:767.520000px;}
.y1bd{bottom:767.556000px;}
.ycc{bottom:772.102500px;}
.y9f{bottom:775.567500px;}
.y39{bottom:776.844000px;}
.ye{bottom:776.845500px;}
.y6e{bottom:777.204000px;}
.y16d{bottom:781.965000px;}
.y137{bottom:785.452500px;}
.y1bc{bottom:785.488500px;}
.y1fa{bottom:790.294500px;}
.yd{bottom:791.788500px;}
.y9e{bottom:793.500000px;}
.y38{bottom:794.778000px;}
.y6d{bottom:795.136500px;}
.ycb{bottom:795.294000px;}
.y18f{bottom:798.961500px;}
.y16c{bottom:799.897500px;}
.y136{bottom:803.385000px;}
.y1bb{bottom:803.421000px;}
.y1f9{bottom:803.745000px;}
.yc{bottom:806.733000px;}
.y9d{bottom:811.432500px;}
.y37{bottom:812.710500px;}
.y6c{bottom:813.069000px;}
.y18e{bottom:816.894000px;}
.y1f8{bottom:817.194000px;}
.y16b{bottom:817.830000px;}
.y135{bottom:821.317500px;}
.y1ba{bottom:821.353500px;}
.yb{bottom:821.677500px;}
.y9c{bottom:829.365000px;}
.y36{bottom:830.643000px;}
.y6b{bottom:831.001500px;}
.y16a{bottom:835.762500px;}
.ya{bottom:836.620500px;}
.y134{bottom:839.251500px;}
.y1b9{bottom:839.286000px;}
.yca{bottom:841.635000px;}
.y18d{bottom:842.896500px;}
.y1f7{bottom:844.093500px;}
.y9b{bottom:847.297500px;}
.y35{bottom:848.575500px;}
.y6a{bottom:848.934000px;}
.y9{bottom:851.565000px;}
.y169{bottom:853.696500px;}
.y1b8{bottom:857.220000px;}
.y1f6{bottom:857.542500px;}
.y133{bottom:857.716500px;}
.y18c{bottom:862.324500px;}
.y9a{bottom:865.231500px;}
.y8{bottom:866.508000px;}
.y69{bottom:866.866500px;}
.yba{bottom:868.247409px;}
.y1f5{bottom:870.991500px;}
.y168{bottom:871.629000px;}
.y1b7{bottom:875.152500px;}
.y132{bottom:875.650500px;}
.y99{bottom:883.164000px;}
.y109{bottom:884.442000px;}
.y167{bottom:889.561500px;}
.y68{bottom:890.583000px;}
.y1b6{bottom:893.085000px;}
.y131{bottom:893.583000px;}
.y1f4{bottom:897.891000px;}
.y98{bottom:901.096500px;}
.y108{bottom:902.374500px;}
.y166{bottom:907.494000px;}
.y1b5{bottom:911.017500px;}
.y1f3{bottom:911.341500px;}
.y97{bottom:919.029000px;}
.y67{bottom:920.127000px;}
.y107{bottom:920.307000px;}
.y7{bottom:924.036000px;}
.y1f2{bottom:924.790500px;}
.y1b4{bottom:928.950000px;}
.y96{bottom:936.961500px;}
.y66{bottom:938.061000px;}
.y106{bottom:938.239500px;}
.y6{bottom:940.431000px;}
.y130{bottom:945.639000px;}
.y1f1{bottom:951.690000px;}
.y5{bottom:952.201500px;}
.y65{bottom:955.993500px;}
.y95{bottom:956.172000px;}
.y1b3{bottom:956.733000px;}
.y165{bottom:959.758500px;}
.y12f{bottom:963.571500px;}
.y1f0{bottom:965.139000px;}
.y4{bottom:972.174000px;}
.y64{bottom:973.926000px;}
.y94{bottom:974.104500px;}
.y164{bottom:977.691000px;}
.y1ef{bottom:978.588000px;}
.y18b{bottom:979.783500px;}
.y124{bottom:985.092000px;}
.y63{bottom:991.858500px;}
.y93{bottom:992.037000px;}
.y105{bottom:992.038500px;}
.y3{bottom:992.146500px;}
.y15a{bottom:999.211500px;}
.y1ee{bottom:1005.487500px;}
.y62{bottom:1009.791000px;}
.y92{bottom:1009.969500px;}
.y104{bottom:1009.971000px;}
.y1ed{bottom:1018.936500px;}
.y61{bottom:1027.723500px;}
.y91{bottom:1027.903500px;}
.y1ec{bottom:1032.387000px;}
.y2{bottom:1039.219500px;}
.y60{bottom:1045.836000px;}
.y1eb{bottom:1059.286500px;}
.y5f{bottom:1063.768500px;}
.y1ea{bottom:1072.735500px;}
.y1{bottom:1081.062000px;}
.y5e{bottom:1081.701000px;}
.y1e9{bottom:1086.184500px;}
.y90{bottom:1099.633500px;}
.y5d{bottom:1099.635000px;}
.h10{height:9.833947px;}
.h13{height:10.533268px;}
.h12{height:10.536372px;}
.h11{height:10.887585px;}
.hc{height:12.178075px;}
.hf{height:12.643647px;}
.hb{height:13.917800px;}
.h16{height:15.036878px;}
.h15{height:16.110941px;}
.h28{height:22.985392px;}
.h1c{height:23.323846px;}
.h24{height:23.836877px;}
.h3{height:24.209280px;}
.h20{height:25.267499px;}
.h9{height:26.074291px;}
.h1d{height:27.211153px;}
.h29{height:27.582471px;}
.h25{height:27.809689px;}
.h19{height:28.424669px;}
.h1b{height:31.098461px;}
.h23{height:31.782502px;}
.h2a{height:32.804932px;}
.h27{height:34.478088px;}
.h8{height:34.765576px;}
.h18{height:34.984208px;}
.h2b{height:35.005576px;}
.h5{height:37.336090px;}
.h4{height:37.605082px;}
.h21{height:39.111437px;}
.hd{height:41.006062px;}
.h6{height:43.456861px;}
.h7{height:52.109716px;}
.h1f{height:54.749700px;}
.h2{height:56.026905px;}
.h1e{height:69.275700px;}
.h1{height:104.296729px;}
.h22{height:107.572768px;}
.h1a{height:112.978800px;}
.h26{height:123.583951px;}
.h17{height:127.095480px;}
.he{height:177.301590px;}
.ha{height:184.075125px;}
.h14{height:223.227972px;}
.h0{height:1188.000000px;}
.w3{width:204.604765px;}
.w7{width:225.955113px;}
.w1{width:284.689664px;}
.w2{width:288.049319px;}
.w6{width:301.265472px;}
.w5{width:301.276800px;}
.w4{width:338.921280px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x39{left:3.815974px;}
.x23{left:7.379480px;}
.x31{left:8.427229px;}
.x47{left:11.432238px;}
.x48{left:14.039316px;}
.x3f{left:15.173862px;}
.x57{left:18.619382px;}
.x30{left:19.846932px;}
.x2a{left:21.482626px;}
.x29{left:22.824347px;}
.x2b{left:26.363324px;}
.x53{left:27.736723px;}
.x28{left:29.269130px;}
.x3a{left:31.817966px;}
.x3e{left:33.214472px;}
.x4d{left:34.985834px;}
.x37{left:40.715902px;}
.x1a{left:43.412567px;}
.x1b{left:47.090376px;}
.x27{left:51.464059px;}
.x14{left:53.232504px;}
.x54{left:54.407676px;}
.x26{left:55.508065px;}
.x13{left:57.619738px;}
.x19{left:61.208870px;}
.x24{left:64.421465px;}
.x40{left:65.716012px;}
.x25{left:66.837315px;}
.x38{left:68.199228px;}
.x58{left:71.227874px;}
.x9{left:73.446000px;}
.x5a{left:79.423500px;}
.x2e{left:83.013344px;}
.x2d{left:84.091243px;}
.xb{left:85.401000px;}
.x8{left:88.390500px;}
.x2c{left:90.536026px;}
.x4e{left:92.618050px;}
.x3{left:97.834500px;}
.x50{left:99.394847px;}
.x2f{left:100.395414px;}
.x51{left:108.483950px;}
.x18{left:109.491780px;}
.x45{left:111.103500px;}
.x21{left:113.728500px;}
.x22{left:117.679968px;}
.x10{left:119.350593px;}
.x35{left:126.775791px;}
.x20{left:128.263541px;}
.x46{left:129.859373px;}
.x6{left:131.721000px;}
.x1f{left:133.850265px;}
.x17{left:136.911995px;}
.x12{left:141.350567px;}
.x1c{left:144.963034px;}
.x11{left:148.253462px;}
.x1{left:150.147000px;}
.x3b{left:152.124518px;}
.x36{left:160.104659px;}
.x7{left:177.765000px;}
.x2{left:179.430000px;}
.x55{left:184.076589px;}
.x34{left:193.833462px;}
.xe{left:197.317500px;}
.xa{left:203.430000px;}
.x3c{left:209.593500px;}
.x4a{left:214.897939px;}
.x59{left:219.897000px;}
.x1d{left:221.109551px;}
.x49{left:225.126835px;}
.x16{left:229.468631px;}
.x5{left:230.659500px;}
.x1e{left:233.552494px;}
.x15{left:236.898925px;}
.x4{left:239.268000px;}
.x32{left:243.232160px;}
.x33{left:244.276138px;}
.x41{left:288.967167px;}
.x42{left:329.015482px;}
.x4b{left:336.133500px;}
.xd{left:467.967000px;}
.x43{left:477.934500px;}
.xc{left:482.910000px;}
.x3d{left:486.796500px;}
.x5b{left:495.355500px;}
.x44{left:497.854500px;}
.x4c{left:505.624500px;}
.x52{left:508.585500px;}
.x4f{left:515.767500px;}
.x5c{left:523.989000px;}
.x56{left:543.283500px;}
.xf{left:584.187000px;}
@media print{
.vf{vertical-align:-21.728000pt;}
.v2{vertical-align:-20.314667pt;}
.v4{vertical-align:-14.997333pt;}
.v9{vertical-align:-11.603406pt;}
.v8{vertical-align:-8.576294pt;}
.vd{vertical-align:-7.194667pt;}
.vc{vertical-align:-5.312000pt;}
.v6{vertical-align:-4.248253pt;}
.v7{vertical-align:-2.124127pt;}
.v5{vertical-align:-1.062063pt;}
.v0{vertical-align:0.000000pt;}
.ve{vertical-align:8.816000pt;}
.v3{vertical-align:19.280000pt;}
.v1{vertical-align:21.109333pt;}
.va{vertical-align:25.712000pt;}
.vb{vertical-align:43.034667pt;}
.ls6{letter-spacing:0.000000pt;}
.ls11{letter-spacing:0.000501pt;}
.ls13{letter-spacing:0.001392pt;}
.lsb{letter-spacing:0.002122pt;}
.ls10{letter-spacing:0.002205pt;}
.ls7{letter-spacing:2.182963pt;}
.ls3{letter-spacing:2.635446pt;}
.ls0{letter-spacing:2.653258pt;}
.ls18{letter-spacing:2.655711pt;}
.ls8{letter-spacing:2.656693pt;}
.ls5{letter-spacing:2.657067pt;}
.ls9{letter-spacing:2.658422pt;}
.ls1{letter-spacing:2.658591pt;}
.ls12{letter-spacing:6.376239pt;}
.lsf{letter-spacing:8.277812pt;}
.ls14{letter-spacing:10.170886pt;}
.ls2{letter-spacing:10.629806pt;}
.lsd{letter-spacing:14.754843pt;}
.lse{letter-spacing:14.757812pt;}
.ls16{letter-spacing:15.620667pt;}
.ls15{letter-spacing:16.890265pt;}
.ls4{letter-spacing:18.299251pt;}
.lsc{letter-spacing:18.442001pt;}
.lsa{letter-spacing:20.365510pt;}
.ls17{letter-spacing:21.019242pt;}
.ws13a{word-spacing:-28.118362pt;}
.ws2d{word-spacing:-27.597651pt;}
.ws139{word-spacing:-17.188402pt;}
.ws138{word-spacing:-13.283467pt;}
.ws20{word-spacing:-13.262246pt;}
.wsbc{word-spacing:-12.744759pt;}
.ws13f{word-spacing:-12.079069pt;}
.ws37{word-spacing:-10.626800pt;}
.wsc7{word-spacing:-7.763053pt;}
.ws2{word-spacing:-4.874858pt;}
.ws5{word-spacing:-4.870476pt;}
.ws4{word-spacing:-4.870153pt;}
.wsc8{word-spacing:-3.693292pt;}
.ws14f{word-spacing:-0.690740pt;}
.ws177{word-spacing:-0.637608pt;}
.ws12f{word-spacing:-0.555452pt;}
.ws5a{word-spacing:-0.531339pt;}
.ws16c{word-spacing:-0.425072pt;}
.ws14{word-spacing:-0.382566pt;}
.ws113{word-spacing:-0.371937pt;}
.wsfd{word-spacing:-0.318803pt;}
.ws12e{word-spacing:-0.265669pt;}
.wsdf{word-spacing:-0.159402pt;}
.ws0{word-spacing:-0.127522pt;}
.ws152{word-spacing:-0.106268pt;}
.ws170{word-spacing:-0.085014pt;}
.ws26{word-spacing:-0.053134pt;}
.ws8{word-spacing:-0.047821pt;}
.ws196{word-spacing:-0.042507pt;}
.ws13b{word-spacing:-0.026567pt;}
.ws68{word-spacing:0.000000pt;}
.ws13e{word-spacing:0.106268pt;}
.ws126{word-spacing:0.212535pt;}
.ws1b9{word-spacing:0.255043pt;}
.ws9c{word-spacing:0.265669pt;}
.ws1a5{word-spacing:0.297550pt;}
.ws82{word-spacing:0.371937pt;}
.ws184{word-spacing:0.579932pt;}
.wsd7{word-spacing:0.584473pt;}
.ws89{word-spacing:0.637606pt;}
.ws1ad{word-spacing:0.637608pt;}
.ws1c1{word-spacing:0.680115pt;}
.wsab{word-spacing:0.743874pt;}
.ws19c{word-spacing:0.892651pt;}
.wse8{word-spacing:0.903276pt;}
.ws115{word-spacing:0.956410pt;}
.ws16{word-spacing:0.956416pt;}
.ws154{word-spacing:1.009543pt;}
.ws183{word-spacing:1.147694pt;}
.ws100{word-spacing:1.154602pt;}
.ws102{word-spacing:1.168945pt;}
.ws168{word-spacing:1.190202pt;}
.ws166{word-spacing:1.232709pt;}
.ws10d{word-spacing:1.328347pt;}
.ws1ba{word-spacing:1.402738pt;}
.ws84{word-spacing:1.434614pt;}
.ws3f{word-spacing:1.540882pt;}
.ws167{word-spacing:1.572766pt;}
.wsda{word-spacing:1.594016pt;}
.wsed{word-spacing:1.647150pt;}
.wsef{word-spacing:1.700284pt;}
.ws1bd{word-spacing:1.742795pt;}
.wsb2{word-spacing:1.753418pt;}
.ws12c{word-spacing:1.770147pt;}
.ws29{word-spacing:1.859685pt;}
.ws1a0{word-spacing:1.912824pt;}
.wsa1{word-spacing:2.019087pt;}
.ws19f{word-spacing:2.040346pt;}
.ws1bf{word-spacing:2.082853pt;}
.ws31{word-spacing:2.178489pt;}
.ws9a{word-spacing:2.231622pt;}
.ws83{word-spacing:2.284756pt;}
.ws2c{word-spacing:2.337890pt;}
.ws87{word-spacing:2.391024pt;}
.ws43{word-spacing:2.497292pt;}
.wsf4{word-spacing:2.550426pt;}
.ws11a{word-spacing:2.603559pt;}
.wsaa{word-spacing:2.762961pt;}
.wsaf{word-spacing:2.816095pt;}
.ws17b{word-spacing:2.847982pt;}
.ws66{word-spacing:2.922363pt;}
.ws2a{word-spacing:2.975497pt;}
.ws2b{word-spacing:2.996980pt;}
.wsb3{word-spacing:3.028630pt;}
.ws6c{word-spacing:3.081764pt;}
.ws56{word-spacing:3.134898pt;}
.ws12d{word-spacing:3.144556pt;}
.wsb9{word-spacing:3.188032pt;}
.wsae{word-spacing:3.241166pt;}
.ws3a{word-spacing:3.294300pt;}
.ws15{word-spacing:3.299635pt;}
.wsd5{word-spacing:3.400567pt;}
.ws39{word-spacing:3.400576pt;}
.ws13d{word-spacing:3.406497pt;}
.ws136{word-spacing:3.453701pt;}
.ws60{word-spacing:3.506835pt;}
.ws7b{word-spacing:3.559969pt;}
.ws122{word-spacing:3.666237pt;}
.ws14e{word-spacing:3.719371pt;}
.ws10e{word-spacing:3.772505pt;}
.ws4e{word-spacing:3.825638pt;}
.ws16f{word-spacing:3.825648pt;}
.ws1c5{word-spacing:3.868155pt;}
.ws190{word-spacing:3.910662pt;}
.wsdc{word-spacing:3.931906pt;}
.ws8b{word-spacing:3.985040pt;}
.ws18d{word-spacing:3.995677pt;}
.ws123{word-spacing:4.038174pt;}
.ws4c{word-spacing:4.091308pt;}
.ws8a{word-spacing:4.197575pt;}
.ws1ae{word-spacing:4.245665pt;}
.ws1b8{word-spacing:4.249132pt;}
.ws169{word-spacing:4.250651pt;}
.ws157{word-spacing:4.250709pt;}
.ws38{word-spacing:4.250720pt;}
.ws175{word-spacing:4.250906pt;}
.ws22{word-spacing:4.303843pt;}
.ws5f{word-spacing:4.356977pt;}
.ws15c{word-spacing:4.410111pt;}
.ws4b{word-spacing:4.463245pt;}
.wsfe{word-spacing:4.569513pt;}
.wsb7{word-spacing:4.622646pt;}
.wsf0{word-spacing:4.675780pt;}
.ws4f{word-spacing:4.728914pt;}
.ws132{word-spacing:4.782048pt;}
.ws7{word-spacing:4.782080pt;}
.ws130{word-spacing:4.802704pt;}
.wsb1{word-spacing:4.835182pt;}
.ws3b{word-spacing:4.888316pt;}
.ws173{word-spacing:4.930835pt;}
.ws160{word-spacing:4.941450pt;}
.ws30{word-spacing:4.994583pt;}
.ws140{word-spacing:5.100851pt;}
.ws156{word-spacing:5.153985pt;}
.ws8c{word-spacing:5.207119pt;}
.wsa2{word-spacing:5.256709pt;}
.ws24{word-spacing:5.260253pt;}
.ws188{word-spacing:5.270893pt;}
.ws74{word-spacing:5.299129pt;}
.ws33{word-spacing:5.313387pt;}
.ws1bc{word-spacing:5.355907pt;}
.wscf{word-spacing:5.366521pt;}
.ws81{word-spacing:5.419654pt;}
.ws90{word-spacing:5.525922pt;}
.ws19d{word-spacing:5.525936pt;}
.ws198{word-spacing:5.568443pt;}
.wsba{word-spacing:5.579056pt;}
.ws1b3{word-spacing:5.610950pt;}
.wsbb{word-spacing:5.632190pt;}
.ws3e{word-spacing:5.685324pt;}
.wsf1{word-spacing:5.738458pt;}
.ws27{word-spacing:5.791591pt;}
.ws86{word-spacing:5.844725pt;}
.ws3{word-spacing:5.844747pt;}
.ws49{word-spacing:5.897859pt;}
.wsff{word-spacing:5.950993pt;}
.ws1c{word-spacing:5.977600pt;}
.wscc{word-spacing:6.004127pt;}
.ws182{word-spacing:6.036022pt;}
.ws1a7{word-spacing:6.078530pt;}
.wsc2{word-spacing:6.163529pt;}
.ws10b{word-spacing:6.192886pt;}
.ws106{word-spacing:6.216662pt;}
.wsbf{word-spacing:6.269796pt;}
.ws1c0{word-spacing:6.291066pt;}
.wsd1{word-spacing:6.376064pt;}
.wsb{word-spacing:6.455808pt;}
.ws164{word-spacing:6.461094pt;}
.ws128{word-spacing:6.482332pt;}
.ws1a4{word-spacing:6.503602pt;}
.ws52{word-spacing:6.535466pt;}
.ws50{word-spacing:6.541837pt;}
.ws186{word-spacing:6.546109pt;}
.ws2e{word-spacing:6.588599pt;}
.wsb4{word-spacing:6.694867pt;}
.ws59{word-spacing:6.801135pt;}
.ws57{word-spacing:6.827594pt;}
.ws5e{word-spacing:6.854269pt;}
.ws34{word-spacing:6.928674pt;}
.ws28{word-spacing:6.960537pt;}
.ws162{word-spacing:7.011932pt;}
.ws79{word-spacing:7.013670pt;}
.ws135{word-spacing:7.066804pt;}
.ws6f{word-spacing:7.173072pt;}
.ws85{word-spacing:7.226206pt;}
.ws1a3{word-spacing:7.268731pt;}
.wsfa{word-spacing:7.279340pt;}
.ws45{word-spacing:7.332474pt;}
.ws161{word-spacing:7.353746pt;}
.ws8f{word-spacing:7.385607pt;}
.ws9e{word-spacing:7.491875pt;}
.ws143{word-spacing:7.545009pt;}
.ws149{word-spacing:7.598143pt;}
.ws176{word-spacing:7.608789pt;}
.ws1c4{word-spacing:7.693803pt;}
.ws14a{word-spacing:7.704411pt;}
.ws54{word-spacing:7.757545pt;}
.wse4{word-spacing:7.863812pt;}
.wsb0{word-spacing:7.916946pt;}
.wsc3{word-spacing:7.970080pt;}
.ws25{word-spacing:8.076348pt;}
.ws5b{word-spacing:8.129482pt;}
.ws112{word-spacing:8.182615pt;}
.ws6e{word-spacing:8.235749pt;}
.wsc{word-spacing:8.272998pt;}
.ws199{word-spacing:8.288904pt;}
.ws7c{word-spacing:8.395151pt;}
.ws17c{word-spacing:8.416426pt;}
.ws73{word-spacing:8.448285pt;}
.ws71{word-spacing:8.465333pt;}
.ws88{word-spacing:8.501419pt;}
.ws6d{word-spacing:8.554553pt;}
.ws4a{word-spacing:8.607686pt;}
.wsd4{word-spacing:8.713954pt;}
.ws118{word-spacing:8.767088pt;}
.ws116{word-spacing:8.784282pt;}
.ws191{word-spacing:8.798990pt;}
.ws32{word-spacing:8.820222pt;}
.ws2f{word-spacing:8.873356pt;}
.ws181{word-spacing:8.884005pt;}
.ws44{word-spacing:8.926490pt;}
.ws11{word-spacing:9.049515pt;}
.ws17f{word-spacing:9.054034pt;}
.ws12{word-spacing:9.085952pt;}
.ws69{word-spacing:9.137529pt;}
.ws11d{word-spacing:9.139025pt;}
.ws6b{word-spacing:9.192159pt;}
.ws9f{word-spacing:9.245293pt;}
.wsac{word-spacing:9.298427pt;}
.ws1ab{word-spacing:9.309077pt;}
.ws1e{word-spacing:9.325056pt;}
.ws63{word-spacing:9.351561pt;}
.ws13{word-spacing:9.372877pt;}
.ws134{word-spacing:9.457828pt;}
.wse5{word-spacing:9.510962pt;}
.ws19{word-spacing:9.516339pt;}
.ws7f{word-spacing:9.617230pt;}
.wse9{word-spacing:9.723498pt;}
.ws10{word-spacing:9.755443pt;}
.wseb{word-spacing:9.776631pt;}
.ws16e{word-spacing:9.819163pt;}
.ws119{word-spacing:9.829765pt;}
.wsd3{word-spacing:9.882899pt;}
.wsd2{word-spacing:9.901052pt;}
.ws1a1{word-spacing:9.904178pt;}
.ws7d{word-spacing:9.936033pt;}
.ws1b0{word-spacing:9.946685pt;}
.wse0{word-spacing:9.989167pt;}
.ws67{word-spacing:10.042301pt;}
.ws8d{word-spacing:10.095435pt;}
.ws16d{word-spacing:10.159221pt;}
.ws129{word-spacing:10.201702pt;}
.ws7a{word-spacing:10.307970pt;}
.ws19b{word-spacing:10.329250pt;}
.ws64{word-spacing:10.361104pt;}
.ws15d{word-spacing:10.414238pt;}
.ws14c{word-spacing:10.467372pt;}
.ws17{word-spacing:10.472755pt;}
.ws171{word-spacing:10.499278pt;}
.ws7e{word-spacing:10.520506pt;}
.ws21{word-spacing:10.573639pt;}
.ws41{word-spacing:10.626773pt;}
.ws18b{word-spacing:10.711814pt;}
.ws8e{word-spacing:10.733041pt;}
.ws189{word-spacing:10.736382pt;}
.ws144{word-spacing:10.839309pt;}
.wsf3{word-spacing:10.892443pt;}
.wsd6{word-spacing:10.945577pt;}
.ws19a{word-spacing:10.966858pt;}
.ws103{word-spacing:10.998710pt;}
.ws55{word-spacing:11.051844pt;}
.ws125{word-spacing:11.104978pt;}
.ws185{word-spacing:11.179394pt;}
.ws1a{word-spacing:11.190067pt;}
.ws12a{word-spacing:11.211246pt;}
.ws1af{word-spacing:11.221901pt;}
.wsa0{word-spacing:11.264380pt;}
.ws1c2{word-spacing:11.264408pt;}
.wsce{word-spacing:11.370647pt;}
.ws178{word-spacing:11.391930pt;}
.wsfc{word-spacing:11.423781pt;}
.ws180{word-spacing:11.519451pt;}
.ws1a6{word-spacing:11.561958pt;}
.wsd{word-spacing:11.572634pt;}
.ws147{word-spacing:11.583183pt;}
.ws1aa{word-spacing:11.604466pt;}
.ws145{word-spacing:11.636317pt;}
.ws9{word-spacing:11.668275pt;}
.wsf7{word-spacing:11.689451pt;}
.ws187{word-spacing:11.731987pt;}
.ws137{word-spacing:11.742585pt;}
.ws165{word-spacing:11.774494pt;}
.ws197{word-spacing:11.817002pt;}
.ws5d{word-spacing:11.955120pt;}
.ws1bb{word-spacing:11.987030pt;}
.wsf5{word-spacing:12.008254pt;}
.ws114{word-spacing:12.061388pt;}
.ws40{word-spacing:12.114522pt;}
.ws105{word-spacing:12.167655pt;}
.ws19e{word-spacing:12.199566pt;}
.wsa8{word-spacing:12.220789pt;}
.ws53{word-spacing:12.273923pt;}
.ws9d{word-spacing:12.327057pt;}
.wse3{word-spacing:12.380191pt;}
.ws3c{word-spacing:12.473727pt;}
.ws3d{word-spacing:12.479835pt;}
.ws23{word-spacing:12.486459pt;}
.wsd8{word-spacing:12.539593pt;}
.ws76{word-spacing:12.592726pt;}
.ws1be{word-spacing:12.667146pt;}
.ws1{word-spacing:12.752160pt;}
.ws1ac{word-spacing:12.794667pt;}
.ws98{word-spacing:12.858396pt;}
.ws42{word-spacing:12.911530pt;}
.wscb{word-spacing:12.964663pt;}
.ws61{word-spacing:13.017797pt;}
.ws192{word-spacing:13.092218pt;}
.ws93{word-spacing:13.230333pt;}
.ws18{word-spacing:13.246362pt;}
.ws12b{word-spacing:13.282689pt;}
.ws148{word-spacing:13.336601pt;}
.wsa5{word-spacing:13.389734pt;}
.ws14b{word-spacing:13.496002pt;}
.ws78{word-spacing:13.549136pt;}
.ws80{word-spacing:13.602270pt;}
.ws110{word-spacing:13.655404pt;}
.wsa3{word-spacing:13.814805pt;}
.ws35{word-spacing:13.984869pt;}
.ws48{word-spacing:14.080475pt;}
.ws172{word-spacing:14.112390pt;}
.ws1b6{word-spacing:14.239912pt;}
.wsd0{word-spacing:14.346144pt;}
.ws99{word-spacing:14.452412pt;}
.ws1c6{word-spacing:14.452448pt;}
.wse{word-spacing:14.489702pt;}
.wsa4{word-spacing:14.505546pt;}
.ws18f{word-spacing:14.537462pt;}
.ws10f{word-spacing:14.611813pt;}
.ws1b7{word-spacing:14.622477pt;}
.wsf6{word-spacing:14.664947pt;}
.wsf{word-spacing:14.680986pt;}
.ws193{word-spacing:14.707491pt;}
.ws16a{word-spacing:14.835013pt;}
.wsc5{word-spacing:14.877483pt;}
.ws91{word-spacing:14.930617pt;}
.ws11b{word-spacing:14.983750pt;}
.wsdb{word-spacing:15.196286pt;}
.ws65{word-spacing:15.302554pt;}
.ws15f{word-spacing:15.355687pt;}
.wsb8{word-spacing:15.461955pt;}
.ws17a{word-spacing:15.515128pt;}
.wse2{word-spacing:15.674491pt;}
.wsf9{word-spacing:15.731751pt;}
.ws16b{word-spacing:15.770171pt;}
.wsa6{word-spacing:15.780758pt;}
.ws101{word-spacing:15.831174pt;}
.ws174{word-spacing:15.855186pt;}
.wsc1{word-spacing:15.887026pt;}
.ws1f{word-spacing:15.940160pt;}
.ws1b{word-spacing:15.972147pt;}
.ws124{word-spacing:15.993294pt;}
.ws11f{word-spacing:16.046428pt;}
.ws1b4{word-spacing:16.195243pt;}
.ws146{word-spacing:16.205829pt;}
.wsa{word-spacing:16.306893pt;}
.ws77{word-spacing:16.312097pt;}
.wsee{word-spacing:16.348508pt;}
.wsa7{word-spacing:16.471499pt;}
.ws75{word-spacing:16.524633pt;}
.ws15b{word-spacing:16.577766pt;}
.wsad{word-spacing:16.630900pt;}
.ws1a8{word-spacing:16.662822pt;}
.ws6{word-spacing:16.689459pt;}
.wsb5{word-spacing:16.790302pt;}
.wsfb{word-spacing:16.949703pt;}
.ws62{word-spacing:17.055971pt;}
.ws94{word-spacing:17.109105pt;}
.ws97{word-spacing:17.162239pt;}
.wsc0{word-spacing:17.268507pt;}
.wsa9{word-spacing:17.481042pt;}
.ws159{word-spacing:17.534176pt;}
.wsec{word-spacing:17.587310pt;}
.ws163{word-spacing:17.597981pt;}
.wsf2{word-spacing:17.767174pt;}
.wsde{word-spacing:17.852979pt;}
.ws1a2{word-spacing:17.853024pt;}
.ws9b{word-spacing:17.959247pt;}
.ws15a{word-spacing:18.065515pt;}
.wsd9{word-spacing:18.071174pt;}
.wse6{word-spacing:18.081841pt;}
.ws96{word-spacing:18.118649pt;}
.ws1c3{word-spacing:18.278096pt;}
.ws1b5{word-spacing:18.405618pt;}
.ws127{word-spacing:18.543719pt;}
.wsdd{word-spacing:18.631174pt;}
.ws142{word-spacing:18.649987pt;}
.ws14d{word-spacing:18.809389pt;}
.ws18e{word-spacing:18.830690pt;}
.ws17d{word-spacing:19.000718pt;}
.ws13c{word-spacing:19.291345pt;}
.ws131{word-spacing:19.463174pt;}
.ws95{word-spacing:19.659531pt;}
.wsc4{word-spacing:19.818932pt;}
.wsb6{word-spacing:19.872066pt;}
.ws109{word-spacing:19.975174pt;}
.ws92{word-spacing:20.031468pt;}
.wse1{word-spacing:20.084602pt;}
.ws107{word-spacing:20.350271pt;}
.ws4d{word-spacing:20.476508pt;}
.ws1b1{word-spacing:20.488470pt;}
.ws46{word-spacing:20.562806pt;}
.wse7{word-spacing:20.615940pt;}
.wscd{word-spacing:20.689841pt;}
.ws10c{word-spacing:20.865841pt;}
.ws51{word-spacing:21.207174pt;}
.ws1d{word-spacing:21.232435pt;}
.wsc6{word-spacing:21.253547pt;}
.ws195{word-spacing:21.253600pt;}
.ws18a{word-spacing:21.296107pt;}
.ws58{word-spacing:21.489841pt;}
.ws70{word-spacing:21.857841pt;}
.ws1a9{word-spacing:22.188758pt;}
.ws111{word-spacing:22.887174pt;}
.ws120{word-spacing:23.006964pt;}
.ws72{word-spacing:23.132508pt;}
.ws18c{word-spacing:23.166424pt;}
.ws117{word-spacing:23.452508pt;}
.ws6a{word-spacing:23.831174pt;}
.wsca{word-spacing:23.900508pt;}
.wsea{word-spacing:24.423174pt;}
.wsf8{word-spacing:24.919783pt;}
.ws17e{word-spacing:24.951726pt;}
.ws15e{word-spacing:25.079174pt;}
.ws194{word-spacing:25.291784pt;}
.ws104{word-spacing:25.671174pt;}
.ws121{word-spacing:25.823059pt;}
.ws1b2{word-spacing:26.099421pt;}
.ws179{word-spacing:26.481986pt;}
.ws141{word-spacing:26.513799pt;}
.ws5c{word-spacing:26.636508pt;}
.ws47{word-spacing:27.310807pt;}
.ws11e{word-spacing:30.687163pt;}
.ws158{word-spacing:55.425239pt;}
.ws10a{word-spacing:59.339564pt;}
.ws150{word-spacing:62.137759pt;}
.ws36{word-spacing:77.023046pt;}
.ws151{word-spacing:77.758440pt;}
.wsbd{word-spacing:87.067409pt;}
.wsbe{word-spacing:89.191536pt;}
.ws155{word-spacing:111.438328pt;}
.ws133{word-spacing:187.233909pt;}
.ws153{word-spacing:191.352304pt;}
.ws11c{word-spacing:362.114757pt;}
.ws108{word-spacing:446.438704pt;}
.wsc9{word-spacing:630.362604pt;}
._c{margin-left:-2742.458647pt;}
._a{margin-left:-17.451288pt;}
._1c{margin-left:-6.290999pt;}
._0{margin-left:-4.718299pt;}
._7{margin-left:-3.173894pt;}
._4{margin-left:-2.045661pt;}
._5{margin-left:-0.956416pt;}
._9{width:1.872467pt;}
._1{width:3.438618pt;}
._3{width:9.741419pt;}
._1e{width:13.432275pt;}
._d{width:15.621357pt;}
._b{width:17.109105pt;}
._1b{width:18.007186pt;}
._1d{width:19.553312pt;}
._2{width:20.456613pt;}
._8{width:22.619238pt;}
._11{width:24.388445pt;}
._10{width:26.566933pt;}
._12{width:31.455255pt;}
._6{width:32.770602pt;}
._1a{width:121.924274pt;}
._13{width:130.577792pt;}
._19{width:132.419612pt;}
._14{width:167.966876pt;}
._16{width:177.760893pt;}
._18{width:181.670919pt;}
._15{width:196.685539pt;}
._17{width:201.011831pt;}
._f{width:248.774165pt;}
._e{width:251.960355pt;}
.fsa{font-size:12.006811pt;}
.fsd{font-size:12.860649pt;}
.fsc{font-size:12.864440pt;}
.fsb{font-size:13.293255pt;}
.fs8{font-size:14.868886pt;}
.fs9{font-size:15.437328pt;}
.fs7{font-size:16.993013pt;}
.fsf{font-size:18.359357pt;}
.fse{font-size:19.670740pt;}
.fs1b{font-size:21.992960pt;}
.fs13{font-size:22.316800pt;}
.fs18{font-size:22.807680pt;}
.fs16{font-size:24.176533pt;}
.fs14{font-size:26.036267pt;}
.fs1c{font-size:26.391552pt;}
.fs15{font-size:26.566933pt;}
.fs19{font-size:26.608960pt;}
.fs11{font-size:27.197387pt;}
.fs12{font-size:29.755733pt;}
.fs17{font-size:30.410240pt;}
.fs3{font-size:31.880533pt;}
.fs1a{font-size:32.989440pt;}
.fs10{font-size:33.473707pt;}
.fs6{font-size:37.193600pt;}
.fs2{font-size:42.507200pt;}
.fs4{font-size:47.820800pt;}
.fs5{font-size:53.133867pt;}
.fs1{font-size:58.447467pt;}
.fs0{font-size:127.521600pt;}
.y0{bottom:0.000000pt;}
.y192{bottom:5.002544pt;}
.y19d{bottom:5.017144pt;}
.y15c{bottom:8.238328pt;}
.y126{bottom:9.267706pt;}
.y191{bottom:14.735900pt;}
.y19c{bottom:15.290548pt;}
.y15b{bottom:17.762197pt;}
.ybc{bottom:17.959188pt;}
.y125{bottom:19.981580pt;}
.ye7{bottom:20.254089pt;}
.y19e{bottom:21.114530pt;}
.y1a2{bottom:22.769014pt;}
.ybb{bottom:23.269504pt;}
.ye6{bottom:24.113421pt;}
.yf7{bottom:25.185458pt;}
.yfe{bottom:26.257494pt;}
.y193{bottom:26.755636pt;}
.ye5{bottom:28.187160pt;}
.y127{bottom:28.509039pt;}
.yf6{bottom:29.259197pt;}
.y186{bottom:31.862317pt;}
.y18a{bottom:32.247340pt;}
.ye4{bottom:32.260900pt;}
.y163{bottom:32.483148pt;}
.yf5{bottom:33.118529pt;}
.y15d{bottom:34.742579pt;}
.yfb{bottom:35.477010pt;}
.y12b{bottom:35.964948pt;}
.y19f{bottom:36.949461pt;}
.y10e{bottom:38.549838pt;}
.y194{bottom:39.636273pt;}
.yc1{bottom:40.528033pt;}
.y162{bottom:42.036076pt;}
.y12a{bottom:43.279639pt;}
.ye3{bottom:43.624489pt;}
.y12e{bottom:44.738394pt;}
.ye2{bottom:47.698228pt;}
.y185{bottom:49.143889pt;}
.y189{bottom:49.528912pt;}
.ye1{bottom:51.557560pt;}
.y161{bottom:51.589003pt;}
.y195{bottom:52.516911pt;}
.yf4{bottom:57.346558pt;}
.y15e{bottom:57.784675pt;}
.yfd{bottom:58.418595pt;}
.y10d{bottom:59.204114pt;}
.yc6{bottom:60.176203pt;}
.y12c{bottom:60.828254pt;}
.y160{bottom:60.953051pt;}
.ye0{bottom:61.205890pt;}
.yf3{bottom:61.420298pt;}
.y110{bottom:62.810417pt;}
.y128{bottom:64.298774pt;}
.yc3{bottom:64.424457pt;}
.yc5{bottom:64.689972pt;}
.ydf{bottom:65.065223pt;}
.yf2{bottom:65.279630pt;}
.y198{bottom:65.869283pt;}
.y184{bottom:66.425461pt;}
.y188{bottom:66.810484pt;}
.yfa{bottom:67.638111pt;}
.y1a0{bottom:68.619324pt;}
.yde{bottom:69.138962pt;}
.yc2{bottom:70.531321pt;}
.yc4{bottom:70.796836pt;}
.ydd{bottom:73.212701pt;}
.y1a5{bottom:73.617424pt;}
.y197{bottom:75.632336pt;}
.y15f{bottom:80.826771pt;}
.y1a4{bottom:83.123366pt;}
.y183{bottom:83.707033pt;}
.y187{bottom:84.092056pt;}
.y10c{bottom:84.448231pt;}
.y196{bottom:85.202356pt;}
.y12d{bottom:88.592411pt;}
.ye9{bottom:88.650030pt;}
.yf1{bottom:89.507659pt;}
.yc0{bottom:89.648460pt;}
.yf9{bottom:90.579696pt;}
.y1a3{bottom:92.443169pt;}
.ye8{bottom:92.723769pt;}
.yfc{bottom:93.261375pt;}
.yf0{bottom:93.581399pt;}
.yef{bottom:97.440731pt;}
.yf8{bottom:99.799211pt;}
.y129{bottom:100.088508pt;}
.y1a1{bottom:100.289186pt;}
.y5c{bottom:100.740000pt;}
.ybd{bottom:101.065640pt;}
.y221{bottom:104.726667pt;}
.ybe{bottom:108.234567pt;}
.yee{bottom:109.018727pt;}
.y1e8{bottom:112.696000pt;}
.yed{bottom:113.092466pt;}
.ydc{bottom:114.593318pt;}
.y5b{bottom:116.680000pt;}
.y103{bottom:116.681333pt;}
.yec{bottom:120.596723pt;}
.y1e7{bottom:124.650667pt;}
.y34{bottom:125.213333pt;}
.ybf{bottom:127.351706pt;}
.y220{bottom:128.636000pt;}
.y10f{bottom:132.313698pt;}
.y5a{bottom:132.620000pt;}
.y102{bottom:132.621333pt;}
.yeb{bottom:135.819644pt;}
.y159{bottom:135.945333pt;}
.y1e6{bottom:136.606667pt;}
.y33{bottom:138.364000pt;}
.yea{bottom:139.893384pt;}
.y21f{bottom:140.592000pt;}
.ydb{bottom:146.540011pt;}
.yc9{bottom:147.530909pt;}
.y32{bottom:147.764000pt;}
.yb9{bottom:148.560000pt;}
.y59{bottom:148.561333pt;}
.y1e5{bottom:148.984000pt;}
.y158{bottom:151.885333pt;}
.yc8{bottom:152.044678pt;}
.y21e{bottom:152.546667pt;}
.yc7{bottom:158.151542pt;}
.y1e4{bottom:160.940000pt;}
.y31{bottom:163.469333pt;}
.yb8{bottom:164.500000pt;}
.y58{bottom:164.501333pt;}
.y8f{bottom:164.660000pt;}
.y10b{bottom:164.770418pt;}
.y157{bottom:167.825333pt;}
.y30{bottom:172.870667pt;}
.y1e3{bottom:172.894667pt;}
.y21d{bottom:176.457333pt;}
.y57{bottom:180.441333pt;}
.y8e{bottom:180.600000pt;}
.y1b2{bottom:180.784000pt;}
.y156{bottom:183.765333pt;}
.y2f{bottom:184.825333pt;}
.y1e2{bottom:184.849333pt;}
.y21c{bottom:188.412000pt;}
.y56{bottom:196.381333pt;}
.y8d{bottom:196.541333pt;}
.y1b1{bottom:196.724000pt;}
.y2e{bottom:196.780000pt;}
.y1e1{bottom:197.228000pt;}
.y155{bottom:199.705333pt;}
.y21b{bottom:200.368000pt;}
.y1e0{bottom:209.184000pt;}
.y55{bottom:212.321333pt;}
.y101{bottom:212.322667pt;}
.y8c{bottom:212.481333pt;}
.y1b0{bottom:212.664000pt;}
.y154{bottom:215.645333pt;}
.y2d{bottom:220.116000pt;}
.y1df{bottom:221.138667pt;}
.y21a{bottom:224.277333pt;}
.y54{bottom:228.261333pt;}
.y123{bottom:228.262667pt;}
.y8b{bottom:228.421333pt;}
.y1af{bottom:228.604000pt;}
.y153{bottom:231.586667pt;}
.y1de{bottom:233.093333pt;}
.y2c{bottom:236.056000pt;}
.y219{bottom:236.233333pt;}
.yb7{bottom:244.201333pt;}
.y53{bottom:244.202667pt;}
.y8a{bottom:244.361333pt;}
.y1ae{bottom:244.544000pt;}
.y1dd{bottom:245.472000pt;}
.y100{bottom:246.618667pt;}
.y152{bottom:247.526667pt;}
.y218{bottom:248.188000pt;}
.y2b{bottom:251.996000pt;}
.y1dc{bottom:257.428000pt;}
.yb6{bottom:260.141333pt;}
.y52{bottom:260.142667pt;}
.y89{bottom:260.301333pt;}
.y1ad{bottom:260.485333pt;}
.yff{bottom:262.558667pt;}
.y151{bottom:263.466667pt;}
.y122{bottom:265.217333pt;}
.y2a{bottom:267.936000pt;}
.y1db{bottom:269.382667pt;}
.y217{bottom:272.098667pt;}
.y51{bottom:276.082667pt;}
.y88{bottom:276.242667pt;}
.y1ac{bottom:276.425333pt;}
.y1da{bottom:281.337333pt;}
.y150{bottom:282.730667pt;}
.y29{bottom:283.876000pt;}
.y216{bottom:284.053333pt;}
.yda{bottom:285.194123pt;}
.y121{bottom:291.385333pt;}
.y50{bottom:292.022667pt;}
.y87{bottom:292.182667pt;}
.y1ab{bottom:292.365333pt;}
.y1d9{bottom:293.293333pt;}
.y215{bottom:296.009333pt;}
.y14f{bottom:298.670667pt;}
.y28{bottom:299.817333pt;}
.y1d8{bottom:305.248000pt;}
.y120{bottom:307.325333pt;}
.y4f{bottom:307.962667pt;}
.y182{bottom:307.964000pt;}
.y86{bottom:308.122667pt;}
.y1aa{bottom:308.305333pt;}
.yb5{bottom:309.097333pt;}
.y14e{bottom:314.610667pt;}
.y27{bottom:315.757333pt;}
.y1d7{bottom:317.626667pt;}
.y214{bottom:319.918667pt;}
.y11f{bottom:323.265333pt;}
.y4e{bottom:323.902667pt;}
.y181{bottom:323.904000pt;}
.y85{bottom:324.062667pt;}
.y1a9{bottom:324.245333pt;}
.yb4{bottom:325.037333pt;}
.y1d6{bottom:329.581333pt;}
.y14d{bottom:330.552000pt;}
.y26{bottom:331.697333pt;}
.y213{bottom:331.874667pt;}
.y11e{bottom:339.205333pt;}
.y4d{bottom:339.844000pt;}
.y84{bottom:340.002667pt;}
.y1a8{bottom:340.185333pt;}
.yb3{bottom:340.978667pt;}
.y1d5{bottom:341.537333pt;}
.y212{bottom:343.829333pt;}
.y14c{bottom:346.492000pt;}
.y25{bottom:347.637333pt;}
.y1d4{bottom:353.914667pt;}
.y11d{bottom:355.145333pt;}
.y4c{bottom:355.784000pt;}
.y83{bottom:355.942667pt;}
.yb2{bottom:356.918667pt;}
.y14b{bottom:362.432000pt;}
.y24{bottom:363.577333pt;}
.y1d3{bottom:365.870667pt;}
.y211{bottom:367.740000pt;}
.y11c{bottom:371.085333pt;}
.y4b{bottom:371.724000pt;}
.y82{bottom:371.884000pt;}
.yb1{bottom:372.858667pt;}
.y1d2{bottom:377.825333pt;}
.y14a{bottom:378.372000pt;}
.y23{bottom:379.517333pt;}
.y210{bottom:379.694667pt;}
.y1a7{bottom:386.528000pt;}
.y11b{bottom:387.026667pt;}
.y4a{bottom:387.664000pt;}
.y81{bottom:387.824000pt;}
.y180{bottom:388.049333pt;}
.yb0{bottom:388.798667pt;}
.y1d1{bottom:389.781333pt;}
.y20f{bottom:391.650667pt;}
.y149{bottom:394.312000pt;}
.y22{bottom:395.458667pt;}
.y1d0{bottom:402.158667pt;}
.y1a6{bottom:402.468000pt;}
.y11a{bottom:402.966667pt;}
.y49{bottom:403.604000pt;}
.y20e{bottom:403.605333pt;}
.y80{bottom:403.764000pt;}
.y17f{bottom:403.990667pt;}
.yaf{bottom:404.738667pt;}
.y148{bottom:410.252000pt;}
.y21{bottom:411.398667pt;}
.y1cf{bottom:414.114667pt;}
.y20d{bottom:415.560000pt;}
.y119{bottom:418.906667pt;}
.y48{bottom:419.545333pt;}
.y7f{bottom:419.704000pt;}
.y17e{bottom:419.930667pt;}
.yae{bottom:420.680000pt;}
.y19b{bottom:421.596000pt;}
.y1ce{bottom:426.069333pt;}
.y147{bottom:426.193333pt;}
.y20{bottom:427.338667pt;}
.y20c{bottom:427.516000pt;}
.y118{bottom:434.846667pt;}
.y47{bottom:435.485333pt;}
.y7e{bottom:435.644000pt;}
.y17d{bottom:435.870667pt;}
.yad{bottom:436.620000pt;}
.y1cd{bottom:438.025333pt;}
.y20b{bottom:439.470667pt;}
.y146{bottom:442.133333pt;}
.y1f{bottom:443.278667pt;}
.y1cc{bottom:450.402667pt;}
.y117{bottom:450.786667pt;}
.y46{bottom:451.425333pt;}
.y7d{bottom:451.584000pt;}
.y17c{bottom:451.810667pt;}
.yac{bottom:452.560000pt;}
.y1e{bottom:459.218667pt;}
.y1cb{bottom:462.358667pt;}
.y145{bottom:463.364000pt;}
.y20a{bottom:463.381333pt;}
.y116{bottom:466.726667pt;}
.y45{bottom:467.365333pt;}
.y7c{bottom:467.525333pt;}
.y17b{bottom:467.750667pt;}
.yab{bottom:468.500000pt;}
.yd9{bottom:469.430667pt;}
.y1ca{bottom:474.313333pt;}
.y209{bottom:475.336000pt;}
.y1d{bottom:478.920000pt;}
.y115{bottom:482.668000pt;}
.y44{bottom:483.305333pt;}
.y7b{bottom:483.465333pt;}
.y17a{bottom:483.692000pt;}
.yaa{bottom:484.440000pt;}
.yd8{bottom:485.370667pt;}
.y1c9{bottom:486.692000pt;}
.y208{bottom:487.290667pt;}
.y144{bottom:490.957333pt;}
.y114{bottom:498.608000pt;}
.y1c8{bottom:498.646667pt;}
.y43{bottom:499.245333pt;}
.y207{bottom:499.246667pt;}
.y7a{bottom:499.405333pt;}
.y179{bottom:499.632000pt;}
.ya9{bottom:500.380000pt;}
.y1c{bottom:504.982667pt;}
.y143{bottom:506.897333pt;}
.y1c7{bottom:510.602667pt;}
.yd7{bottom:510.970667pt;}
.y206{bottom:511.201333pt;}
.y113{bottom:514.548000pt;}
.y42{bottom:515.186667pt;}
.y79{bottom:515.345333pt;}
.y178{bottom:515.572000pt;}
.ya8{bottom:516.321333pt;}
.y1b{bottom:518.265333pt;}
.y142{bottom:522.837333pt;}
.y1c6{bottom:522.980000pt;}
.y205{bottom:523.157333pt;}
.yd6{bottom:526.910667pt;}
.y112{bottom:530.488000pt;}
.y1a{bottom:531.126667pt;}
.y78{bottom:531.285333pt;}
.y177{bottom:531.512000pt;}
.ya7{bottom:532.261333pt;}
.y1c5{bottom:534.936000pt;}
.y204{bottom:535.112000pt;}
.y141{bottom:538.777333pt;}
.yd5{bottom:542.850667pt;}
.y19{bottom:544.410667pt;}
.y1c4{bottom:546.890667pt;}
.y41{bottom:547.066667pt;}
.y77{bottom:547.225333pt;}
.y176{bottom:547.452000pt;}
.ya6{bottom:548.201333pt;}
.y140{bottom:554.718667pt;}
.y19a{bottom:555.474667pt;}
.y18{bottom:557.693333pt;}
.yd4{bottom:558.792000pt;}
.y203{bottom:559.022667pt;}
.y111{bottom:562.280000pt;}
.y40{bottom:563.006667pt;}
.y76{bottom:563.166667pt;}
.ya5{bottom:564.141333pt;}
.y175{bottom:568.925333pt;}
.y13f{bottom:570.658667pt;}
.y17{bottom:570.977333pt;}
.y1c3{bottom:571.188000pt;}
.y199{bottom:571.414667pt;}
.yd3{bottom:574.732000pt;}
.y3f{bottom:578.946667pt;}
.y75{bottom:579.106667pt;}
.ya4{bottom:580.081333pt;}
.y10a{bottom:581.408197pt;}
.y202{bottom:582.932000pt;}
.y16{bottom:584.260000pt;}
.y13e{bottom:586.598667pt;}
.y190{bottom:590.542667pt;}
.yd2{bottom:590.672000pt;}
.y3e{bottom:594.886667pt;}
.y201{bottom:594.888000pt;}
.y74{bottom:595.046667pt;}
.ya3{bottom:596.021333pt;}
.y174{bottom:597.108000pt;}
.y15{bottom:597.544000pt;}
.y13d{bottom:602.538667pt;}
.y1c2{bottom:602.570667pt;}
.yd1{bottom:606.612000pt;}
.y200{bottom:606.842667pt;}
.y14{bottom:610.828000pt;}
.y73{bottom:610.986667pt;}
.ya2{bottom:611.962667pt;}
.y173{bottom:613.049333pt;}
.y13c{bottom:618.478667pt;}
.y1c1{bottom:618.510667pt;}
.y1ff{bottom:618.798667pt;}
.yd0{bottom:622.552000pt;}
.y13{bottom:624.110667pt;}
.y3d{bottom:626.768000pt;}
.y72{bottom:626.926667pt;}
.ya1{bottom:627.902667pt;}
.y172{bottom:628.989333pt;}
.y1fe{bottom:630.753333pt;}
.y13b{bottom:634.418667pt;}
.y1c0{bottom:634.450667pt;}
.y12{bottom:637.394667pt;}
.ycf{bottom:638.492000pt;}
.y3c{bottom:642.708000pt;}
.y71{bottom:643.026667pt;}
.y171{bottom:644.929333pt;}
.y13a{bottom:650.360000pt;}
.y1bf{bottom:650.390667pt;}
.y11{bottom:650.678667pt;}
.yce{bottom:654.433333pt;}
.y1fd{bottom:654.664000pt;}
.ya0{bottom:654.837333pt;}
.y3b{bottom:658.648000pt;}
.y70{bottom:658.966667pt;}
.y16f{bottom:660.869333pt;}
.y10{bottom:663.961333pt;}
.y170{bottom:664.097333pt;}
.y139{bottom:666.300000pt;}
.y1be{bottom:666.330667pt;}
.y1fc{bottom:666.618667pt;}
.ycd{bottom:670.373333pt;}
.y3a{bottom:674.588000pt;}
.y6f{bottom:674.906667pt;}
.yf{bottom:677.245333pt;}
.y1fb{bottom:678.573333pt;}
.y16e{bottom:679.140000pt;}
.y138{bottom:682.240000pt;}
.y1bd{bottom:682.272000pt;}
.ycc{bottom:686.313333pt;}
.y9f{bottom:689.393333pt;}
.y39{bottom:690.528000pt;}
.ye{bottom:690.529333pt;}
.y6e{bottom:690.848000pt;}
.y16d{bottom:695.080000pt;}
.y137{bottom:698.180000pt;}
.y1bc{bottom:698.212000pt;}
.y1fa{bottom:702.484000pt;}
.yd{bottom:703.812000pt;}
.y9e{bottom:705.333333pt;}
.y38{bottom:706.469333pt;}
.y6d{bottom:706.788000pt;}
.ycb{bottom:706.928000pt;}
.y18f{bottom:710.188000pt;}
.y16c{bottom:711.020000pt;}
.y136{bottom:714.120000pt;}
.y1bb{bottom:714.152000pt;}
.y1f9{bottom:714.440000pt;}
.yc{bottom:717.096000pt;}
.y9d{bottom:721.273333pt;}
.y37{bottom:722.409333pt;}
.y6c{bottom:722.728000pt;}
.y18e{bottom:726.128000pt;}
.y1f8{bottom:726.394667pt;}
.y16b{bottom:726.960000pt;}
.y135{bottom:730.060000pt;}
.y1ba{bottom:730.092000pt;}
.yb{bottom:730.380000pt;}
.y9c{bottom:737.213333pt;}
.y36{bottom:738.349333pt;}
.y6b{bottom:738.668000pt;}
.y16a{bottom:742.900000pt;}
.ya{bottom:743.662667pt;}
.y134{bottom:746.001333pt;}
.y1b9{bottom:746.032000pt;}
.yca{bottom:748.120000pt;}
.y18d{bottom:749.241333pt;}
.y1f7{bottom:750.305333pt;}
.y9b{bottom:753.153333pt;}
.y35{bottom:754.289333pt;}
.y6a{bottom:754.608000pt;}
.y9{bottom:756.946667pt;}
.y169{bottom:758.841333pt;}
.y1b8{bottom:761.973333pt;}
.y1f6{bottom:762.260000pt;}
.y133{bottom:762.414667pt;}
.y18c{bottom:766.510667pt;}
.y9a{bottom:769.094667pt;}
.y8{bottom:770.229333pt;}
.y69{bottom:770.548000pt;}
.yba{bottom:771.775474pt;}
.y1f5{bottom:774.214667pt;}
.y168{bottom:774.781333pt;}
.y1b7{bottom:777.913333pt;}
.y132{bottom:778.356000pt;}
.y99{bottom:785.034667pt;}
.y109{bottom:786.170667pt;}
.y167{bottom:790.721333pt;}
.y68{bottom:791.629333pt;}
.y1b6{bottom:793.853333pt;}
.y131{bottom:794.296000pt;}
.y1f4{bottom:798.125333pt;}
.y98{bottom:800.974667pt;}
.y108{bottom:802.110667pt;}
.y166{bottom:806.661333pt;}
.y1b5{bottom:809.793333pt;}
.y1f3{bottom:810.081333pt;}
.y97{bottom:816.914667pt;}
.y67{bottom:817.890667pt;}
.y107{bottom:818.050667pt;}
.y7{bottom:821.365333pt;}
.y1f2{bottom:822.036000pt;}
.y1b4{bottom:825.733333pt;}
.y96{bottom:832.854667pt;}
.y66{bottom:833.832000pt;}
.y106{bottom:833.990667pt;}
.y6{bottom:835.938667pt;}
.y130{bottom:840.568000pt;}
.y1f1{bottom:845.946667pt;}
.y5{bottom:846.401333pt;}
.y65{bottom:849.772000pt;}
.y95{bottom:849.930667pt;}
.y1b3{bottom:850.429333pt;}
.y165{bottom:853.118667pt;}
.y12f{bottom:856.508000pt;}
.y1f0{bottom:857.901333pt;}
.y4{bottom:864.154667pt;}
.y64{bottom:865.712000pt;}
.y94{bottom:865.870667pt;}
.y164{bottom:869.058667pt;}
.y1ef{bottom:869.856000pt;}
.y18b{bottom:870.918667pt;}
.y124{bottom:875.637333pt;}
.y63{bottom:881.652000pt;}
.y93{bottom:881.810667pt;}
.y105{bottom:881.812000pt;}
.y3{bottom:881.908000pt;}
.y15a{bottom:888.188000pt;}
.y1ee{bottom:893.766667pt;}
.y62{bottom:897.592000pt;}
.y92{bottom:897.750667pt;}
.y104{bottom:897.752000pt;}
.y1ed{bottom:905.721333pt;}
.y61{bottom:913.532000pt;}
.y91{bottom:913.692000pt;}
.y1ec{bottom:917.677333pt;}
.y2{bottom:923.750667pt;}
.y60{bottom:929.632000pt;}
.y1eb{bottom:941.588000pt;}
.y5f{bottom:945.572000pt;}
.y1ea{bottom:953.542667pt;}
.y1{bottom:960.944000pt;}
.y5e{bottom:961.512000pt;}
.y1e9{bottom:965.497333pt;}
.y90{bottom:977.452000pt;}
.y5d{bottom:977.453333pt;}
.h10{height:8.741287pt;}
.h13{height:9.362904pt;}
.h12{height:9.365664pt;}
.h11{height:9.677853pt;}
.hc{height:10.824956pt;}
.hf{height:11.238797pt;}
.hb{height:12.371378pt;}
.h16{height:13.366114pt;}
.h15{height:14.320836pt;}
.h28{height:20.431460pt;}
.h1c{height:20.732307pt;}
.h24{height:21.188335pt;}
.h3{height:21.519360pt;}
.h20{height:22.459999pt;}
.h9{height:23.177148pt;}
.h1d{height:24.187692pt;}
.h29{height:24.517752pt;}
.h25{height:24.719724pt;}
.h19{height:25.266372pt;}
.h1b{height:27.643076pt;}
.h23{height:28.251113pt;}
.h2a{height:29.159939pt;}
.h27{height:30.647190pt;}
.h8{height:30.902734pt;}
.h18{height:31.097073pt;}
.h2b{height:31.116068pt;}
.h5{height:33.187635pt;}
.h4{height:33.426739pt;}
.h21{height:34.765722pt;}
.hd{height:36.449833pt;}
.h6{height:38.628321pt;}
.h7{height:46.319747pt;}
.h1f{height:48.666400pt;}
.h2{height:49.801693pt;}
.h1e{height:61.578400pt;}
.h1{height:92.708203pt;}
.h22{height:95.620239pt;}
.h1a{height:100.425600pt;}
.h26{height:109.852401pt;}
.h17{height:112.973760pt;}
.he{height:157.601413pt;}
.ha{height:163.622333pt;}
.h14{height:198.424864pt;}
.h0{height:1056.000000pt;}
.w3{width:181.870902pt;}
.w7{width:200.848989pt;}
.w1{width:253.057479pt;}
.w2{width:256.043839pt;}
.w6{width:267.791531pt;}
.w5{width:267.801600pt;}
.w4{width:301.263360pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x39{left:3.391977pt;}
.x23{left:6.559538pt;}
.x31{left:7.490870pt;}
.x47{left:10.161990pt;}
.x48{left:12.479392pt;}
.x3f{left:13.487877pt;}
.x57{left:16.550561pt;}
.x30{left:17.641717pt;}
.x2a{left:19.095667pt;}
.x29{left:20.288308pt;}
.x2b{left:23.434066pt;}
.x53{left:24.654865pt;}
.x28{left:26.017004pt;}
.x3a{left:28.282636pt;}
.x3e{left:29.523975pt;}
.x4d{left:31.098519pt;}
.x37{left:36.191913pt;}
.x1a{left:38.588948pt;}
.x1b{left:41.858112pt;}
.x27{left:45.745830pt;}
.x14{left:47.317781pt;}
.x54{left:48.362379pt;}
.x26{left:49.340502pt;}
.x13{left:51.217545pt;}
.x19{left:54.407885pt;}
.x24{left:57.263525pt;}
.x40{left:58.414233pt;}
.x25{left:59.410947pt;}
.x38{left:60.621536pt;}
.x58{left:63.313665pt;}
.x9{left:65.285333pt;}
.x5a{left:70.598667pt;}
.x2e{left:73.789639pt;}
.x2d{left:74.747772pt;}
.xb{left:75.912000pt;}
.x8{left:78.569333pt;}
.x2c{left:80.476468pt;}
.x4e{left:82.327156pt;}
.x3{left:86.964000pt;}
.x50{left:88.350975pt;}
.x2f{left:89.240368pt;}
.x51{left:96.430177pt;}
.x18{left:97.326027pt;}
.x45{left:98.758667pt;}
.x21{left:101.092000pt;}
.x22{left:104.604416pt;}
.x10{left:106.089416pt;}
.x35{left:112.689592pt;}
.x20{left:114.012037pt;}
.x46{left:115.430554pt;}
.x6{left:117.085333pt;}
.x1f{left:118.978014pt;}
.x17{left:121.699551pt;}
.x12{left:125.644949pt;}
.x1c{left:128.856031pt;}
.x11{left:131.780855pt;}
.x1{left:133.464000pt;}
.x3b{left:135.221794pt;}
.x36{left:142.315252pt;}
.x7{left:158.013333pt;}
.x2{left:159.493333pt;}
.x55{left:163.623634pt;}
.x34{left:172.296410pt;}
.xe{left:175.393333pt;}
.xa{left:180.826667pt;}
.x3c{left:186.305333pt;}
.x4a{left:191.020390pt;}
.x59{left:195.464000pt;}
.x1d{left:196.541823pt;}
.x49{left:200.112742pt;}
.x16{left:203.972116pt;}
.x5{left:205.030667pt;}
.x1e{left:207.602217pt;}
.x15{left:210.576822pt;}
.x4{left:212.682667pt;}
.x32{left:216.206364pt;}
.x33{left:217.134345pt;}
.x41{left:256.859704pt;}
.x42{left:292.458206pt;}
.x4b{left:298.785333pt;}
.xd{left:415.970667pt;}
.x43{left:424.830667pt;}
.xc{left:429.253333pt;}
.x3d{left:432.708000pt;}
.x5b{left:440.316000pt;}
.x44{left:442.537333pt;}
.x4c{left:449.444000pt;}
.x52{left:452.076000pt;}
.x4f{left:458.460000pt;}
.x5c{left:465.768000pt;}
.x56{left:482.918667pt;}
.xf{left:519.277333pt;}
}




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