
    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_1cf192c930dbe68791e616c9.woff')format("woff");}.ff1{font-family:ff1;line-height:0.906000;font-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_e1a423fe96b182023b336949.woff')format("woff");}.ff2{font-family:ff2;line-height:0.919000;font-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_2209dfa0f32b1fdd230e60f6.woff')format("woff");}.ff3{font-family:ff3;line-height:0.713000;font-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_d44473be6edce9da08235c5a.woff')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_8b732f1b0b9a1828f828533c.woff')format("woff");}.ff5{font-family:ff5;line-height:0.806000;font-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_ad269d40595ad4964aac6bd1.woff')format("woff");}.ff6{font-family:ff6;line-height:0.108000;font-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_c50f683e7912eee59841ba90.woff')format("woff");}.ff7{font-family:ff7;line-height:1.000000;font-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_d771ca9322e673930fef8761.woff')format("woff");}.ff8{font-family:ff8;line-height:0.709473;font-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_5a884a7ccd03ef7f45b8c451.woff')format("woff");}.ff9{font-family:ff9;line-height:0.910156;font-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_a421c18d6607dafdd2773af5.woff')format("woff");}.ffa{font-family:ffa;line-height:0.688965;font-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_96882624c84a29a6a4aa73ca.woff')format("woff");}.ffb{font-family:ffb;line-height:0.910156;font-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_f3354d41698c0d81291ddf28.woff')format("woff");}.ffc{font-family:ffc;line-height:0.690918;font-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_c93333bbfd43be69ec9912bf.woff')format("woff");}.ffd{font-family:ffd;line-height:0.908203;font-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_765089cebab02b0b7584da2f.woff')format("woff");}.ffe{font-family:ffe;line-height:0.704000;font-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_05cdbfe3f2bd14c2b2e40de7.woff')format("woff");}.fff{font-family:fff;line-height:0.520000;font-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_b4637eb3e8e9ffe1f3527cbe.woff')format("woff");}.ff10{font-family:ff10;line-height:0.892000;font-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_bf889a50dca00109c0275b5d.woff')format("woff");}.ff11{font-family:ff11;line-height:1.000000;font-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_bd780a7f05b07679839074cd.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_0499fef5137adfeeb6ef0fa2.woff')format("woff");}.ff13{font-family:ff13;line-height:0.980000;font-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_86e74a1d00478b872fa69871.woff')format("woff");}.ff14{font-family:ff14;line-height:0.899000;font-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_d2903d5eb23fcdb6ef94ed68.woff')format("woff");}.ff15{font-family:ff15;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:ff16;src:url('chunks/assets/font_04773f56dc6e8b8f9013ab79.woff')format("woff");}.ff16{font-family:ff16;line-height:0.049000;font-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_2358870d38f5048ad0f8bbaa.woff')format("woff");}.ff17{font-family:ff17;line-height:0.684000;font-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_4c382f3c91e339be86fc9226.woff')format("woff");}.ff18{font-family:ff18;line-height:0.560000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.ff19{font-family:sans-serif;visibility:hidden;}
.ff1a{font-family:sans-serif;visibility:hidden;}
.ff1b{font-family:sans-serif;visibility:hidden;}
.ff1c{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);}
.v2{vertical-align:-21.690000px;}
.v7{vertical-align:-8.964000px;}
.v0{vertical-align:0.000000px;}
.v4{vertical-align:5.459196px;}
.v6{vertical-align:15.108000px;}
.v5{vertical-align:16.878000px;}
.v3{vertical-align:21.690000px;}
.v1{vertical-align:23.754000px;}
.v8{vertical-align:26.217249px;}
.ls8{letter-spacing:0.000000px;}
.ls6{letter-spacing:0.000557px;}
.ls2f{letter-spacing:0.000564px;}
.ls21{letter-spacing:0.000993px;}
.lsd{letter-spacing:0.001289px;}
.ls1d{letter-spacing:0.002338px;}
.ls3f{letter-spacing:0.002725px;}
.ls28{letter-spacing:0.003269px;}
.ls39{letter-spacing:0.004200px;}
.ls54{letter-spacing:0.840017px;}
.ls41{letter-spacing:2.371909px;}
.ls40{letter-spacing:2.389613px;}
.ls42{letter-spacing:2.391527px;}
.ls43{letter-spacing:2.391746px;}
.lsa{letter-spacing:2.449834px;}
.ls7{letter-spacing:2.964877px;}
.ls22{letter-spacing:2.982648px;}
.ls30{letter-spacing:2.984525px;}
.ls0{letter-spacing:2.984915px;}
.ls2{letter-spacing:2.985113px;}
.ls46{letter-spacing:2.986766px;}
.ls11{letter-spacing:2.987108px;}
.ls4b{letter-spacing:2.987675px;}
.lse{letter-spacing:2.987950px;}
.ls10{letter-spacing:2.988017px;}
.ls31{letter-spacing:2.988648px;}
.lsf{letter-spacing:2.988780px;}
.ls1{letter-spacing:2.990915px;}
.ls9{letter-spacing:2.993675px;}
.ls14{letter-spacing:2.996207px;}
.ls16{letter-spacing:3.002207px;}
.ls4e{letter-spacing:5.746430px;}
.ls20{letter-spacing:5.752430px;}
.ls23{letter-spacing:6.764108px;}
.ls13{letter-spacing:8.305923px;}
.ls1f{letter-spacing:9.962338px;}
.ls29{letter-spacing:13.278538px;}
.ls2e{letter-spacing:13.284538px;}
.ls2d{letter-spacing:15.549723px;}
.ls37{letter-spacing:16.280207px;}
.ls3d{letter-spacing:16.598338px;}
.ls27{letter-spacing:16.604400px;}
.lsc{letter-spacing:16.735289px;}
.ls44{letter-spacing:16.738613px;}
.ls18{letter-spacing:16.928207px;}
.ls45{letter-spacing:17.240100px;}
.ls26{letter-spacing:18.867723px;}
.ls2c{letter-spacing:19.604207px;}
.ls1e{letter-spacing:20.918100px;}
.ls1c{letter-spacing:20.919269px;}
.ls33{letter-spacing:20.920200px;}
.ls4f{letter-spacing:23.458430px;}
.ls4a{letter-spacing:23.604924px;}
.ls19{letter-spacing:23.816207px;}
.ls3{letter-spacing:23.906915px;}
.ls4{letter-spacing:23.907113px;}
.ls5{letter-spacing:23.913113px;}
.ls12{letter-spacing:24.740207px;}
.ls1b{letter-spacing:25.855923px;}
.ls38{letter-spacing:27.492538px;}
.ls48{letter-spacing:28.738430px;}
.ls25{letter-spacing:29.180108px;}
.ls24{letter-spacing:29.886600px;}
.ls15{letter-spacing:30.176207px;}
.ls3b{letter-spacing:30.812400px;}
.ls17{letter-spacing:31.868207px;}
.ls4d{letter-spacing:32.446430px;}
.ls4c{letter-spacing:34.108430px;}
.ls50{letter-spacing:34.432430px;}
.ls47{letter-spacing:34.536648px;}
.ls1a{letter-spacing:35.030400px;}
.ls3e{letter-spacing:40.363923px;}
.ls2b{letter-spacing:44.094600px;}
.ls2a{letter-spacing:57.292430px;}
.lsb{letter-spacing:76.428749px;}
.ls49{letter-spacing:103.356041px;}
.ls36{letter-spacing:119.556600px;}
.ls34{letter-spacing:133.764600px;}
.ls51{letter-spacing:264.748694px;}
.ls35{letter-spacing:269.854200px;}
.ls52{letter-spacing:274.094474px;}
.ls53{letter-spacing:281.966286px;}
.ls3a{letter-spacing:294.471723px;}
.ls32{letter-spacing:321.837723px;}
.ls3c{letter-spacing:573.164207px;}
.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;}
}
.ws122{word-spacing:-103.356041px;}
.ws76{word-spacing:-98.265535px;}
.ws73{word-spacing:-92.806338px;}
.ws3{word-spacing:-50.809387px;}
.wsbc{word-spacing:-43.186340px;}
.wsc9{word-spacing:-43.157983px;}
.wsc6{word-spacing:-38.937826px;}
.wsc5{word-spacing:-23.479530px;}
.wscb{word-spacing:-22.337477px;}
.wscc{word-spacing:-22.320209px;}
.ws4f{word-spacing:-21.836785px;}
.wsba{word-spacing:-16.605662px;}
.ws56{word-spacing:-14.943900px;}
.ws1a{word-spacing:-14.920027px;}
.ws59{word-spacing:-11.955150px;}
.wsfa{word-spacing:-11.936059px;}
.ws50{word-spacing:-10.918393px;}
.ws47{word-spacing:-6.623136px;}
.ws1bc{word-spacing:-4.016930px;}
.ws75{word-spacing:-4.009097px;}
.ws77{word-spacing:-4.009070px;}
.wsfc{word-spacing:-3.969110px;}
.ws78{word-spacing:-3.859850px;}
.wsc7{word-spacing:-3.335478px;}
.wsa2{word-spacing:-2.988780px;}
.ws13d{word-spacing:-1.075961px;}
.wsb6{word-spacing:-1.019951px;}
.ws6a{word-spacing:-1.016185px;}
.ws17f{word-spacing:-0.849866px;}
.ws17e{word-spacing:-0.847500px;}
.ws180{word-spacing:-0.836858px;}
.ws41{word-spacing:-0.777083px;}
.ws68{word-spacing:-0.657532px;}
.ws65{word-spacing:-0.597756px;}
.ws109{word-spacing:-0.537980px;}
.ws10{word-spacing:-0.484186px;}
.ws17b{word-spacing:-0.478205px;}
.ws1e{word-spacing:-0.179327px;}
.ws71{word-spacing:-0.119551px;}
.wsc0{word-spacing:-0.059776px;}
.ws4{word-spacing:-0.053798px;}
.wse8{word-spacing:-0.048418px;}
.ws1a3{word-spacing:-0.047821px;}
.ws177{word-spacing:-0.016652px;}
.wsf7{word-spacing:-0.003765px;}
.ws4d{word-spacing:0.000000px;}
.ws100{word-spacing:0.119551px;}
.ws7b{word-spacing:0.143462px;}
.ws8d{word-spacing:0.298878px;}
.ws18f{word-spacing:0.334744px;}
.ws192{word-spacing:0.430385px;}
.ws165{word-spacing:0.537980px;}
.ws197{word-spacing:0.573847px;}
.wsa9{word-spacing:0.597756px;}
.ws16d{word-spacing:0.657532px;}
.ws1b8{word-spacing:0.669488px;}
.ws161{word-spacing:0.717307px;}
.ws3c{word-spacing:0.777083px;}
.ws7e{word-spacing:0.836858px;}
.ws155{word-spacing:1.016185px;}
.wsab{word-spacing:1.135736px;}
.ws21{word-spacing:1.195512px;}
.ws91{word-spacing:1.315063px;}
.ws19d{word-spacing:1.338977px;}
.ws88{word-spacing:1.374839px;}
.ws15b{word-spacing:1.530259px;}
.ws117{word-spacing:1.554166px;}
.ws8e{word-spacing:1.613941px;}
.ws6f{word-spacing:1.793268px;}
.ws199{word-spacing:1.817183px;}
.ws140{word-spacing:1.853044px;}
.ws42{word-spacing:1.972595px;}
.ws9f{word-spacing:2.032370px;}
.ws85{word-spacing:2.151922px;}
.ws102{word-spacing:2.271473px;}
.ws104{word-spacing:2.293775px;}
.ws94{word-spacing:2.331248px;}
.ws176{word-spacing:2.350033px;}
.ws4b{word-spacing:2.391024px;}
.ws7c{word-spacing:2.391030px;}
.ws18a{word-spacing:2.438851px;}
.ws69{word-spacing:2.510575px;}
.ws6c{word-spacing:2.570351px;}
.wsb8{word-spacing:2.578522px;}
.ws52{word-spacing:2.582312px;}
.ws6d{word-spacing:2.630126px;}
.ws18e{word-spacing:2.630133px;}
.ws134{word-spacing:2.749678px;}
.ws26{word-spacing:2.869229px;}
.ws2d{word-spacing:2.929004px;}
.ws124{word-spacing:2.964877px;}
.ws89{word-spacing:3.048556px;}
.ws9d{word-spacing:3.108331px;}
.ws194{word-spacing:3.203980px;}
.ws1ba{word-spacing:3.299621px;}
.ws17d{word-spacing:3.332434px;}
.ws17c{word-spacing:3.347434px;}
.ws18d{word-spacing:3.347442px;}
.ws1b9{word-spacing:3.395263px;}
.wsa5{word-spacing:3.407209px;}
.wsfe{word-spacing:3.432766px;}
.wsfd{word-spacing:3.466985px;}
.wsd3{word-spacing:3.586536px;}
.ws9e{word-spacing:3.765863px;}
.wse5{word-spacing:3.772445px;}
.ws3a{word-spacing:3.825638px;}
.ws175{word-spacing:3.885414px;}
.ws9c{word-spacing:3.945190px;}
.wsa{word-spacing:4.034880px;}
.ws97{word-spacing:4.064741px;}
.wse4{word-spacing:4.124516px;}
.ws178{word-spacing:4.184292px;}
.ws191{word-spacing:4.208213px;}
.ws113{word-spacing:4.244068px;}
.ws92{word-spacing:4.303843px;}
.ws19b{word-spacing:4.399495px;}
.ws8c{word-spacing:4.423394px;}
.ws131{word-spacing:4.483170px;}
.ws8f{word-spacing:4.542946px;}
.ws18{word-spacing:4.572864px;}
.ws15e{word-spacing:4.602721px;}
.ws1b0{word-spacing:4.638598px;}
.ws11f{word-spacing:4.662497px;}
.ws153{word-spacing:4.673711px;}
.ws151{word-spacing:4.698317px;}
.ws120{word-spacing:4.722272px;}
.wsf8{word-spacing:4.741226px;}
.wsf9{word-spacing:4.743818px;}
.ws1b7{word-spacing:4.781808px;}
.ws18b{word-spacing:4.781912px;}
.ws14d{word-spacing:4.782048px;}
.ws4c{word-spacing:4.782060px;}
.ws14f{word-spacing:4.841824px;}
.ws14e{word-spacing:4.862117px;}
.ws168{word-spacing:4.901599px;}
.ws7d{word-spacing:4.973342px;}
.ws3d{word-spacing:5.021150px;}
.ws25{word-spacing:5.080926px;}
.ws133{word-spacing:5.140702px;}
.wsa0{word-spacing:5.320028px;}
.ws53{word-spacing:5.355907px;}
.ws16a{word-spacing:5.379804px;}
.wsbd{word-spacing:5.379840px;}
.ws126{word-spacing:5.439580px;}
.ws118{word-spacing:5.499355px;}
.ws193{word-spacing:5.499369px;}
.ws1aa{word-spacing:5.547190px;}
.ws16b{word-spacing:5.559131px;}
.ws16c{word-spacing:5.564134px;}
.ws13c{word-spacing:5.618906px;}
.wsff{word-spacing:5.678682px;}
.ws5e{word-spacing:5.738458px;}
.ws3e{word-spacing:5.798233px;}
.wsb{word-spacing:5.810227px;}
.ws1b1{word-spacing:5.834113px;}
.ws150{word-spacing:5.858009px;}
.ws57{word-spacing:5.919050px;}
.ws107{word-spacing:5.924000px;}
.wsa3{word-spacing:5.927831px;}
.wsa4{word-spacing:5.941208px;}
.ws58{word-spacing:5.961520px;}
.ws12a{word-spacing:5.962114px;}
.wscf{word-spacing:5.973283px;}
.wsbf{word-spacing:5.974000px;}
.wsc2{word-spacing:5.975507px;}
.wsbb{word-spacing:5.975650px;}
.ws162{word-spacing:5.976334px;}
.wsb9{word-spacing:5.976917px;}
.wsc1{word-spacing:5.976925px;}
.wsbe{word-spacing:5.977158px;}
.wscd{word-spacing:5.977208px;}
.ws2{word-spacing:5.977560px;}
.wsfb{word-spacing:5.977575px;}
.ws49{word-spacing:5.978134px;}
.ws138{word-spacing:5.978683px;}
.ws9{word-spacing:6.079219px;}
.ws2f{word-spacing:6.156887px;}
.ws5d{word-spacing:6.216662px;}
.ws1ab{word-spacing:6.312319px;}
.wsaf{word-spacing:6.336214px;}
.ws80{word-spacing:6.395989px;}
.ws141{word-spacing:6.455765px;}
.ws181{word-spacing:6.500052px;}
.ws164{word-spacing:6.515540px;}
.ws1{word-spacing:6.575340px;}
.ws14b{word-spacing:6.646525px;}
.ws15c{word-spacing:6.647063px;}
.wsac{word-spacing:6.694867px;}
.ws16{word-spacing:6.724800px;}
.ws1a0{word-spacing:6.742705px;}
.ws87{word-spacing:6.754643px;}
.ws8a{word-spacing:6.814418px;}
.ws20{word-spacing:6.874194px;}
.ws15d{word-spacing:6.933970px;}
.ws112{word-spacing:6.993745px;}
.ws8b{word-spacing:7.113296px;}
.ws33{word-spacing:7.173072px;}
.ws125{word-spacing:7.173090px;}
.ws14c{word-spacing:7.232848px;}
.ws7{word-spacing:7.262784px;}
.ws127{word-spacing:7.292623px;}
.ws1b2{word-spacing:7.316552px;}
.ws5{word-spacing:7.424179px;}
.wsc4{word-spacing:7.471950px;}
.wsc3{word-spacing:7.473198px;}
.wsa1{word-spacing:7.531726px;}
.ws16f{word-spacing:7.603475px;}
.ws13e{word-spacing:7.651277px;}
.ws13f{word-spacing:7.711052px;}
.ws1b6{word-spacing:7.746937px;}
.ws61{word-spacing:7.770828px;}
.ws83{word-spacing:7.890379px;}
.ws7a{word-spacing:7.938220px;}
.ws62{word-spacing:7.950155px;}
.ws119{word-spacing:8.009930px;}
.ws11a{word-spacing:8.039442px;}
.ws11b{word-spacing:8.069706px;}
.wsb7{word-spacing:8.249033px;}
.ws39{word-spacing:8.308808px;}
.ws15f{word-spacing:8.368584px;}
.ws1a4{word-spacing:8.368605px;}
.ws143{word-spacing:8.428360px;}
.ws142{word-spacing:8.547911px;}
.ws5b{word-spacing:8.607686px;}
.ws19f{word-spacing:8.655529px;}
.ws2c{word-spacing:8.667462px;}
.ws19a{word-spacing:8.703349px;}
.ws160{word-spacing:8.727238px;}
.ws2b{word-spacing:8.846789px;}
.ws1ac{word-spacing:8.846811px;}
.ws48{word-spacing:8.906564px;}
.ws11{word-spacing:8.930534px;}
.ws6b{word-spacing:8.966340px;}
.ws67{word-spacing:9.026116px;}
.ws95{word-spacing:9.085891px;}
.wsa8{word-spacing:9.145667px;}
.ws1b3{word-spacing:9.181555px;}
.ws137{word-spacing:9.182683px;}
.ws136{word-spacing:9.205442px;}
.ws15{word-spacing:9.307123px;}
.ws86{word-spacing:9.324994px;}
.wse7{word-spacing:9.378317px;}
.wse9{word-spacing:9.384769px;}
.ws6{word-spacing:9.414720px;}
.ws1ad{word-spacing:9.420658px;}
.ws1f{word-spacing:9.444545px;}
.ws2e{word-spacing:9.504320px;}
.ws27{word-spacing:9.564096px;}
.ws182{word-spacing:9.623872px;}
.ws11d{word-spacing:9.683647px;}
.ws14{word-spacing:9.791309px;}
.ws34{word-spacing:9.803198px;}
.ws32{word-spacing:9.862974px;}
.ws46{word-spacing:9.922750px;}
.ws99{word-spacing:10.042301px;}
.ws5c{word-spacing:10.102076px;}
.ws179{word-spacing:10.221628px;}
.ws123{word-spacing:10.281429px;}
.ws14a{word-spacing:10.400954px;}
.ws1d{word-spacing:10.460730px;}
.ws45{word-spacing:10.520506px;}
.ws12c{word-spacing:10.580281px;}
.ws66{word-spacing:10.640057px;}
.ws1b{word-spacing:10.699832px;}
.wsd{word-spacing:10.705882px;}
.ws146{word-spacing:10.855276px;}
.ws9a{word-spacing:10.879159px;}
.ws54{word-spacing:10.903097px;}
.ws163{word-spacing:10.938935px;}
.ws1af{word-spacing:10.950917px;}
.wsa6{word-spacing:10.998710px;}
.ws129{word-spacing:11.118262px;}
.ws5f{word-spacing:11.178037px;}
.wsaa{word-spacing:11.237813px;}
.ws40{word-spacing:11.357364px;}
.wse0{word-spacing:11.417140px;}
.ws1c{word-spacing:11.536691px;}
.wsb0{word-spacing:11.656242px;}
.wsf2{word-spacing:11.716018px;}
.ws132{word-spacing:11.722124px;}
.wsb1{word-spacing:11.775793px;}
.ws13{word-spacing:11.889446px;}
.ws11e{word-spacing:11.955120px;}
.ws12d{word-spacing:12.014896px;}
.wsb4{word-spacing:12.194222px;}
.ws190{word-spacing:12.242074px;}
.wsb3{word-spacing:12.253998px;}
.ws24{word-spacing:12.373549px;}
.wsf6{word-spacing:12.433325px;}
.ws196{word-spacing:12.481177px;}
.ws93{word-spacing:12.493100px;}
.wsee{word-spacing:12.672427px;}
.wsf0{word-spacing:12.680117px;}
.ws158{word-spacing:12.698683px;}
.ws12f{word-spacing:12.732203px;}
.ws51{word-spacing:12.768100px;}
.ws8{word-spacing:12.857818px;}
.ws1a6{word-spacing:12.959383px;}
.ws60{word-spacing:12.971305px;}
.ws174{word-spacing:13.031081px;}
.ws1bd{word-spacing:13.246306px;}
.ws36{word-spacing:13.270183px;}
.ws30{word-spacing:13.329959px;}
.ws130{word-spacing:13.389734px;}
.ws128{word-spacing:13.509286px;}
.ws145{word-spacing:13.628871px;}
.ws1b5{word-spacing:13.676692px;}
.ws13a{word-spacing:13.726310px;}
.ws139{word-spacing:13.726826px;}
.ws13b{word-spacing:13.748388px;}
.ws189{word-spacing:13.772333px;}
.ws29{word-spacing:13.808164px;}
.ws156{word-spacing:13.867939px;}
.ws157{word-spacing:13.868683px;}
.wsb5{word-spacing:13.927715px;}
.wsae{word-spacing:13.987490px;}
.ws3f{word-spacing:14.107042px;}
.wsa7{word-spacing:14.166817px;}
.wsed{word-spacing:14.188500px;}
.ws63{word-spacing:14.346144px;}
.ws0{word-spacing:14.346180px;}
.ws121{word-spacing:14.465695px;}
.ws147{word-spacing:14.525471px;}
.ws3b{word-spacing:14.585246px;}
.wsd4{word-spacing:14.704798px;}
.ws82{word-spacing:14.764573px;}
.ws7f{word-spacing:15.003676px;}
.ws101{word-spacing:15.026261px;}
.ws96{word-spacing:15.063451px;}
.ws195{word-spacing:15.111310px;}
.ws10d{word-spacing:15.123227px;}
.ws169{word-spacing:15.242778px;}
.ws1bb{word-spacing:15.254771px;}
.ws11c{word-spacing:15.481880px;}
.ws90{word-spacing:15.661207px;}
.ws135{word-spacing:15.720983px;}
.ws1a5{word-spacing:15.732977px;}
.ws81{word-spacing:15.960085px;}
.ws43{word-spacing:16.019861px;}
.ws19c{word-spacing:16.306825px;}
.ws84{word-spacing:16.318739px;}
.ws10e{word-spacing:16.352134px;}
.wsb2{word-spacing:16.378514px;}
.ws114{word-spacing:16.603324px;}
.ws115{word-spacing:16.617617px;}
.ws10c{word-spacing:16.677392px;}
.ws10b{word-spacing:16.688134px;}
.ws18c{word-spacing:16.689389px;}
.ws116{word-spacing:16.796944px;}
.ws35{word-spacing:16.856719px;}
.ws5a{word-spacing:16.916495px;}
.ws167{word-spacing:16.976270px;}
.ws1a9{word-spacing:16.976313px;}
.ws10f{word-spacing:17.016317px;}
.ws111{word-spacing:17.036046px;}
.wsd2{word-spacing:17.095822px;}
.wsdb{word-spacing:17.155597px;}
.ws103{word-spacing:17.187479px;}
.ws105{word-spacing:17.192261px;}
.ws1a1{word-spacing:17.215416px;}
.ws19e{word-spacing:17.454519px;}
.ws22{word-spacing:17.633802px;}
.ws12e{word-spacing:17.693578px;}
.ws12{word-spacing:17.699674px;}
.ws28{word-spacing:17.813129px;}
.wseb{word-spacing:17.864117px;}
.wsec{word-spacing:17.872904px;}
.ws144{word-spacing:17.873023px;}
.ws19{word-spacing:17.932680px;}
.ws17{word-spacing:17.968666px;}
.ws172{word-spacing:18.042294px;}
.ws171{word-spacing:18.045036px;}
.ws173{word-spacing:18.052231px;}
.wse{word-spacing:18.130061px;}
.ws37{word-spacing:18.231558px;}
.wsd7{word-spacing:18.291334px;}
.ws186{word-spacing:18.470660px;}
.ws198{word-spacing:18.506572px;}
.ws184{word-spacing:18.530436px;}
.ws4a{word-spacing:18.590212px;}
.wsc{word-spacing:18.614246px;}
.wse6{word-spacing:18.695915px;}
.ws55{word-spacing:18.769538px;}
.ws64{word-spacing:18.948865px;}
.wse3{word-spacing:19.016261px;}
.ws187{word-spacing:19.068416px;}
.ws2a{word-spacing:19.128192px;}
.ws98{word-spacing:19.187968px;}
.ws12b{word-spacing:19.247743px;}
.ws108{word-spacing:19.307519px;}
.ws188{word-spacing:19.546621px;}
.ws152{word-spacing:19.599967px;}
.ws70{word-spacing:19.725948px;}
.wsd1{word-spacing:19.845499px;}
.ws159{word-spacing:20.084602px;}
.wsca{word-spacing:20.185208px;}
.ws9b{word-spacing:20.204153px;}
.wsea{word-spacing:20.323704px;}
.ws183{word-spacing:20.443255px;}
.ws23{word-spacing:20.562806px;}
.wsf4{word-spacing:20.801909px;}
.wsad{word-spacing:20.861684px;}
.ws17a{word-spacing:20.900895px;}
.ws1b4{word-spacing:21.088885px;}
.ws1ae{word-spacing:21.327988px;}
.ws106{word-spacing:21.620505px;}
.ws149{word-spacing:21.638767px;}
.ws1a7{word-spacing:21.932821px;}
.ws1a8{word-spacing:21.949655px;}
.ws170{word-spacing:22.176748px;}
.ws44{word-spacing:22.236523px;}
.ws6e{word-spacing:22.356074px;}
.ws31{word-spacing:22.774504px;}
.ws148{word-spacing:22.834279px;}
.ws38{word-spacing:23.372260px;}
.wsf{word-spacing:23.402304px;}
.ws166{word-spacing:23.970016px;}
.wse1{word-spacing:26.062162px;}
.wsda{word-spacing:26.301264px;}
.wsf1{word-spacing:26.624261px;}
.wsf3{word-spacing:26.624749px;}
.wsef{word-spacing:27.579967px;}
.wsde{word-spacing:27.735878px;}
.ws154{word-spacing:29.099338px;}
.ws1a2{word-spacing:29.122745px;}
.wsd9{word-spacing:31.561517px;}
.ws10a{word-spacing:31.579287px;}
.wsdd{word-spacing:31.749479px;}
.ws110{word-spacing:31.910068px;}
.wsdc{word-spacing:32.031723px;}
.wsc8{word-spacing:32.332478px;}
.wsd5{word-spacing:32.577702px;}
.wsd6{word-spacing:33.158505px;}
.wsf5{word-spacing:35.702018px;}
.ws185{word-spacing:39.571447px;}
.wse2{word-spacing:40.982749px;}
.ws74{word-spacing:41.263848px;}
.wsdf{word-spacing:42.621479px;}
.wsd8{word-spacing:46.467967px;}
.ws79{word-spacing:46.723044px;}
.ws72{word-spacing:54.591964px;}
.ws16e{word-spacing:75.417677px;}
.ws15a{word-spacing:75.574767px;}
.wsce{word-spacing:109.090500px;}
.wsd0{word-spacing:198.754500px;}
.ws4e{word-spacing:969.966980px;}
._23{margin-left:-552.530410px;}
._14{margin-left:-288.910908px;}
._38{margin-left:-103.356041px;}
._e{margin-left:-92.806338px;}
._1d{margin-left:-76.428749px;}
._1c{margin-left:-16.377589px;}
._37{margin-left:-10.509870px;}
._5{margin-left:-6.380856px;}
._1{margin-left:-5.021163px;}
._2{margin-left:-3.586545px;}
._0{margin-left:-2.151927px;}
._7{margin-left:-1.022170px;}
._10{width:1.194265px;}
._6{width:2.960190px;}
._28{width:5.285718px;}
._22{width:6.760102px;}
._30{width:7.986788px;}
._3e{width:14.080867px;}
._2f{width:16.737210px;}
._12{width:17.753375px;}
._3a{width:18.891847px;}
._b{width:20.154468px;}
._11{width:21.698543px;}
._a{width:22.769187px;}
._29{width:23.909129px;}
._8{width:25.285248px;}
._c{width:27.317471px;}
._20{width:28.895329px;}
._3f{width:29.956412px;}
._9{width:31.019628px;}
._13{width:33.653663px;}
._25{width:35.872201px;}
._24{width:39.786739px;}
._26{width:41.364769px;}
._27{width:43.130984px;}
._39{width:44.520979px;}
._f{width:49.494321px;}
._21{width:50.582894px;}
._4{width:53.001760px;}
._3{width:54.268408px;}
._1a{width:55.444963px;}
._3d{width:63.783047px;}
._19{width:65.510356px;}
._17{width:70.969553px;}
._16{width:76.428749px;}
._18{width:81.887946px;}
._3b{width:85.525617px;}
._3c{width:87.052307px;}
._33{width:118.738550px;}
._32{width:130.119853px;}
._2e{width:142.075003px;}
._35{width:154.030153px;}
._36{width:165.172352px;}
._1f{width:172.284588px;}
._1b{width:174.694284px;}
._2d{width:177.127502px;}
._15{width:186.762329px;}
._2b{width:201.037802px;}
._34{width:255.146136px;}
._1e{width:265.090899px;}
._2a{width:289.071745px;}
._31{width:312.554693px;}
._d{width:370.009829px;}
._2c{width:410.300748px;}
.fc4{color:transparent;}
.fc3{color:rgb(255,51,51);}
.fc5{color:rgb(38,38,38);}
.fc2{color:rgb(255,255,255);}
.fc1{color:rgb(51,51,51);}
.fc0{color:rgb(0,0,0);}
.fse{font-size:30.529548px;}
.fs11{font-size:34.117200px;}
.fs6{font-size:35.865600px;}
.fsc{font-size:36.033840px;}
.fsf{font-size:37.383120px;}
.fsa{font-size:38.256600px;}
.fs10{font-size:39.803400px;}
.fs13{font-size:39.890160px;}
.fs8{font-size:41.842800px;}
.fsb{font-size:42.039480px;}
.fsd{font-size:43.613640px;}
.fs5{font-size:43.673571px;}
.fs12{font-size:46.538520px;}
.fs2{font-size:47.820600px;}
.fs9{font-size:48.418200px;}
.fs7{font-size:53.797800px;}
.fs4{font-size:53.798400px;}
.fs3{font-size:59.775600px;}
.fs1{font-size:65.753400px;}
.fs0{font-size:143.461800px;}
.y0{bottom:0.000000px;}
.y99{bottom:5.481404px;}
.y1a8{bottom:7.249905px;}
.y14b{bottom:7.657191px;}
.y17c{bottom:7.943913px;}
.y1db{bottom:8.476659px;}
.y6b{bottom:15.034998px;}
.y1a7{bottom:19.133175px;}
.y14a{bottom:20.208040px;}
.y17b{bottom:21.709371px;}
.y6c{bottom:21.858993px;}
.y1da{bottom:22.370693px;}
.y9e{bottom:27.318190px;}
.y1a9{bottom:27.562522px;}
.y6a{bottom:28.682989px;}
.y14c{bottom:34.185570px;}
.y17d{bottom:39.551125px;}
.y1dc{bottom:39.556184px;}
.y98{bottom:40.966180px;}
.y14d{bottom:65.031408px;}
.y1aa{bottom:65.432614px;}
.y17e{bottom:67.198380px;}
.y150{bottom:68.005897px;}
.y1dd{bottom:69.171606px;}
.y59{bottom:69.565500px;}
.y69{bottom:69.626961px;}
.y60{bottom:70.991760px;}
.y1e2{bottom:74.080910px;}
.y68{bottom:75.086158px;}
.y183{bottom:79.415766px;}
.y1b2{bottom:80.369106px;}
.y63{bottom:81.910153px;}
.y58{bottom:83.014500px;}
.y5f{bottom:83.274952px;}
.y67{bottom:92.828546px;}
.y62{bottom:94.193345px;}
.y17f{bottom:94.845636px;}
.y97{bottom:95.558144px;}
.y14e{bottom:95.877246px;}
.y57{bottom:96.465000px;}
.y5e{bottom:96.922943px;}
.y1ae{bottom:98.188458px;}
.y1de{bottom:98.787027px;}
.y1ab{bottom:103.302706px;}
.y65{bottom:105.111738px;}
.y61{bottom:107.841336px;}
.y5d{bottom:110.570934px;}
.y9d{bottom:116.030130px;}
.y180{bottom:122.492891px;}
.y14f{bottom:126.723084px;}
.y96{bottom:126.948523px;}
.y1df{bottom:128.402449px;}
.y187{bottom:133.831570px;}
.y6e{bottom:136.502117px;}
.y1e6{bottom:139.248861px;}
.y1ac{bottom:141.172798px;}
.y56{bottom:142.561500px;}
.y186{bottom:147.066557px;}
.y9b{bottom:147.420510px;}
.y181{bottom:150.140146px;}
.y66{bottom:152.879706px;}
.y1e5{bottom:153.371432px;}
.y153{bottom:154.455677px;}
.y152{bottom:154.479137px;}
.y95{bottom:155.609304px;}
.y1b0{bottom:156.771199px;}
.y1b1{bottom:156.793411px;}
.y1e0{bottom:158.017871px;}
.y5b{bottom:158.338902px;}
.y6d{bottom:159.703701px;}
.y185{bottom:160.277206px;}
.y55{bottom:160.494000px;}
.y9c{bottom:163.798099px;}
.y30{bottom:165.873000px;}
.y151{bottom:167.212970px;}
.y1e4{bottom:167.468033px;}
.y1af{bottom:168.849932px;}
.y184{bottom:173.487856px;}
.y64{bottom:177.446090px;}
.y182{bottom:177.787401px;}
.y93{bottom:178.426500px;}
.y1ad{bottom:179.042890px;}
.y11e{bottom:179.646000px;}
.y54{bottom:180.022500px;}
.y9a{bottom:180.175688px;}
.y1e3{bottom:181.564634px;}
.y20b{bottom:183.214500px;}
.y2f{bottom:183.807000px;}
.y94{bottom:186.999683px;}
.y1e1{bottom:187.633293px;}
.y5c{bottom:189.729281px;}
.y1d8{bottom:196.170000px;}
.y179{bottom:196.251000px;}
.y92{bottom:196.359000px;}
.ybf{bottom:197.484000px;}
.y11d{bottom:197.578500px;}
.y53{bottom:197.955000px;}
.y245{bottom:200.250000px;}
.y2e{bottom:201.739500px;}
.y20a{bottom:211.348500px;}
.y244{bottom:213.699000px;}
.y1d7{bottom:214.104000px;}
.y178{bottom:214.183500px;}
.yef{bottom:214.291500px;}
.ybe{bottom:215.416500px;}
.y11c{bottom:215.511000px;}
.y91{bottom:215.653500px;}
.y52{bottom:215.887500px;}
.y2d{bottom:219.672000px;}
.y243{bottom:227.149500px;}
.y209{bottom:229.281000px;}
.y1d6{bottom:232.036500px;}
.y177{bottom:232.116000px;}
.yee{bottom:232.225500px;}
.ybd{bottom:233.349000px;}
.y11b{bottom:233.445000px;}
.y90{bottom:233.586000px;}
.y51{bottom:233.820000px;}
.y2c{bottom:237.604500px;}
.y242{bottom:240.598500px;}
.y208{bottom:247.213500px;}
.y1d5{bottom:249.969000px;}
.y176{bottom:250.048500px;}
.yed{bottom:250.158000px;}
.ybc{bottom:251.283000px;}
.y11a{bottom:251.377500px;}
.y8f{bottom:251.518500px;}
.y50{bottom:251.752500px;}
.y241{bottom:254.047500px;}
.y2b{bottom:255.621000px;}
.y207{bottom:265.146000px;}
.y240{bottom:267.498000px;}
.y1d4{bottom:267.901500px;}
.y175{bottom:267.981000px;}
.yec{bottom:268.090500px;}
.ybb{bottom:269.215500px;}
.y119{bottom:269.310000px;}
.y8e{bottom:269.451000px;}
.y4f{bottom:269.685000px;}
.y2a{bottom:273.553500px;}
.y23f{bottom:280.947000px;}
.y206{bottom:283.078500px;}
.y1d3{bottom:285.834000px;}
.y174{bottom:285.915000px;}
.yeb{bottom:286.023000px;}
.yba{bottom:287.148000px;}
.y8d{bottom:287.383500px;}
.y4e{bottom:287.619000px;}
.y118{bottom:288.462000px;}
.y148{bottom:291.337500px;}
.y29{bottom:291.486000px;}
.y23e{bottom:294.397500px;}
.y205{bottom:301.012500px;}
.y1d2{bottom:303.768000px;}
.y173{bottom:303.847500px;}
.yea{bottom:303.955500px;}
.yb9{bottom:305.080500px;}
.y8c{bottom:305.317500px;}
.y4d{bottom:305.551500px;}
.y117{bottom:306.394500px;}
.y23d{bottom:307.846500px;}
.y28{bottom:309.420000px;}
.y204{bottom:318.945000px;}
.y147{bottom:320.833500px;}
.y23c{bottom:321.295500px;}
.y1d1{bottom:321.700500px;}
.y172{bottom:321.780000px;}
.ye9{bottom:321.889500px;}
.yb8{bottom:323.013000px;}
.y8b{bottom:323.250000px;}
.y4c{bottom:323.484000px;}
.y116{bottom:324.327000px;}
.y1a5{bottom:326.457000px;}
.y27{bottom:327.352500px;}
.y23b{bottom:334.746000px;}
.y203{bottom:336.877500px;}
.y146{bottom:338.766000px;}
.y1d0{bottom:339.633000px;}
.y171{bottom:339.712500px;}
.ye8{bottom:339.822000px;}
.yb7{bottom:340.945500px;}
.y8a{bottom:341.182500px;}
.y4b{bottom:341.416500px;}
.y115{bottom:342.261000px;}
.y26{bottom:345.285000px;}
.y23a{bottom:348.195000px;}
.y1a4{bottom:353.646000px;}
.y202{bottom:354.810000px;}
.y145{bottom:356.698500px;}
.y1cf{bottom:357.565500px;}
.y170{bottom:357.645000px;}
.ye7{bottom:357.754500px;}
.yb6{bottom:358.879500px;}
.y89{bottom:359.115000px;}
.y4a{bottom:359.349000px;}
.y114{bottom:360.193500px;}
.y239{bottom:361.644000px;}
.y25{bottom:363.217500px;}
.y1a3{bottom:371.578500px;}
.y201{bottom:372.756000px;}
.y144{bottom:374.631000px;}
.y238{bottom:375.094500px;}
.y16f{bottom:375.469500px;}
.y1ce{bottom:375.498000px;}
.ye6{bottom:376.062000px;}
.yb5{bottom:376.812000px;}
.y88{bottom:377.047500px;}
.y49{bottom:377.281500px;}
.y113{bottom:378.126000px;}
.y24{bottom:381.150000px;}
.y237{bottom:388.543500px;}
.y1a2{bottom:389.511000px;}
.y200{bottom:390.688500px;}
.y143{bottom:392.565000px;}
.y16e{bottom:393.402000px;}
.y1cd{bottom:393.430500px;}
.ye5{bottom:393.994500px;}
.yb4{bottom:394.744500px;}
.y87{bottom:394.980000px;}
.y48{bottom:395.215500px;}
.y112{bottom:396.058500px;}
.y23{bottom:399.082500px;}
.y236{bottom:401.992500px;}
.y1a1{bottom:407.445000px;}
.y1ff{bottom:408.622500px;}
.y142{bottom:410.497500px;}
.y16d{bottom:411.334500px;}
.ye4{bottom:411.927000px;}
.yb3{bottom:412.677000px;}
.y86{bottom:412.914000px;}
.y47{bottom:413.148000px;}
.y111{bottom:413.991000px;}
.y235{bottom:415.443000px;}
.y1cc{bottom:415.882500px;}
.y22{bottom:417.016500px;}
.y1a0{bottom:425.377500px;}
.y1fe{bottom:426.555000px;}
.y141{bottom:428.430000px;}
.y234{bottom:428.892000px;}
.y16c{bottom:429.267000px;}
.ye3{bottom:429.861000px;}
.yb2{bottom:430.609500px;}
.y46{bottom:431.080500px;}
.y110{bottom:431.925000px;}
.y85{bottom:432.207000px;}
.y21{bottom:434.949000px;}
.y233{bottom:442.342500px;}
.y1cb{bottom:442.770000px;}
.y19f{bottom:443.310000px;}
.y1fd{bottom:444.487500px;}
.y140{bottom:446.362500px;}
.y16b{bottom:447.199500px;}
.ye2{bottom:447.793500px;}
.yb1{bottom:449.667000px;}
.y10f{bottom:449.857500px;}
.y84{bottom:450.139500px;}
.y45{bottom:450.609000px;}
.y20{bottom:452.881500px;}
.y232{bottom:455.791500px;}
.y1ca{bottom:460.702500px;}
.y19e{bottom:461.242500px;}
.y1fc{bottom:462.420000px;}
.y13f{bottom:464.295000px;}
.y16a{bottom:465.133500px;}
.ye1{bottom:465.726000px;}
.yb0{bottom:467.601000px;}
.y10e{bottom:467.790000px;}
.y83{bottom:468.072000px;}
.y44{bottom:468.541500px;}
.y231{bottom:469.240500px;}
.y1f{bottom:470.814000px;}
.y1c9{bottom:478.635000px;}
.y19d{bottom:479.175000px;}
.y1fb{bottom:480.352500px;}
.y13e{bottom:482.227500px;}
.y230{bottom:482.691000px;}
.y169{bottom:483.066000px;}
.yaf{bottom:485.533500px;}
.y10d{bottom:485.722500px;}
.y82{bottom:486.006000px;}
.y43{bottom:486.474000px;}
.y1e{bottom:488.746500px;}
.ye0{bottom:489.678000px;}
.y22f{bottom:496.140000px;}
.y1c8{bottom:496.567500px;}
.y19c{bottom:497.107500px;}
.y1fa{bottom:498.286500px;}
.y13d{bottom:500.161500px;}
.y168{bottom:500.998500px;}
.yae{bottom:503.466000px;}
.y10c{bottom:503.655000px;}
.y81{bottom:503.938500px;}
.y42{bottom:504.406500px;}
.y22e{bottom:509.589000px;}
.y1d{bottom:511.888500px;}
.y1c7{bottom:514.500000px;}
.y19b{bottom:515.041500px;}
.y1f9{bottom:516.219000px;}
.y13c{bottom:518.094000px;}
.y167{bottom:518.931000px;}
.ydf{bottom:520.885500px;}
.yad{bottom:521.398500px;}
.y80{bottom:521.871000px;}
.y41{bottom:522.340500px;}
.y10b{bottom:522.807000px;}
.y22d{bottom:523.039500px;}
.y1c6{bottom:532.434000px;}
.y19a{bottom:532.974000px;}
.y1f8{bottom:534.151500px;}
.y13b{bottom:536.026500px;}
.y22c{bottom:536.488500px;}
.y166{bottom:536.755500px;}
.yde{bottom:538.819500px;}
.yac{bottom:539.331000px;}
.y7f{bottom:539.803500px;}
.y40{bottom:540.273000px;}
.y10a{bottom:540.741000px;}
.y1c{bottom:544.773000px;}
.y22b{bottom:549.939000px;}
.y1c5{bottom:550.366500px;}
.y199{bottom:550.906500px;}
.y1f7{bottom:552.084000px;}
.y13a{bottom:553.959000px;}
.y165{bottom:554.688000px;}
.ydd{bottom:556.752000px;}
.yab{bottom:557.263500px;}
.y7e{bottom:557.736000px;}
.y3f{bottom:558.205500px;}
.y109{bottom:558.673500px;}
.y1b{bottom:559.717500px;}
.y22a{bottom:563.388000px;}
.y1c4{bottom:568.299000px;}
.y198{bottom:568.701000px;}
.y1f6{bottom:570.016500px;}
.y139{bottom:571.891500px;}
.y164{bottom:572.620500px;}
.ydc{bottom:574.684500px;}
.y1a{bottom:574.744500px;}
.yaa{bottom:575.197500px;}
.y3e{bottom:576.138000px;}
.y108{bottom:576.606000px;}
.y229{bottom:576.837000px;}
.y7d{bottom:577.030500px;}
.y1c3{bottom:586.231500px;}
.y197{bottom:586.633500px;}
.y1f5{bottom:587.949000px;}
.y19{bottom:589.689000px;}
.y138{bottom:589.824000px;}
.y228{bottom:590.287500px;}
.y163{bottom:590.553000px;}
.ydb{bottom:592.617000px;}
.ya9{bottom:593.130000px;}
.y3d{bottom:594.070500px;}
.y107{bottom:594.538500px;}
.y7c{bottom:594.963000px;}
.y227{bottom:603.736500px;}
.y1c2{bottom:604.164000px;}
.y196{bottom:604.566000px;}
.y18{bottom:604.633500px;}
.y1f4{bottom:605.883000px;}
.y137{bottom:607.758000px;}
.y162{bottom:608.485500px;}
.yda{bottom:610.549500px;}
.ya8{bottom:611.062500px;}
.y3c{bottom:612.003000px;}
.y106{bottom:612.471000px;}
.y7b{bottom:612.895500px;}
.y226{bottom:617.185500px;}
.y17{bottom:619.576500px;}
.y1c1{bottom:622.098000px;}
.y195{bottom:622.498500px;}
.y1f3{bottom:623.815500px;}
.yd9{bottom:628.482000px;}
.ya7{bottom:628.995000px;}
.y3b{bottom:629.937000px;}
.y105{bottom:630.403500px;}
.y225{bottom:630.636000px;}
.y7a{bottom:630.828000px;}
.y136{bottom:631.005000px;}
.y161{bottom:631.017000px;}
.y16{bottom:634.521000px;}
.y1c0{bottom:640.030500px;}
.y194{bottom:640.431000px;}
.y1f2{bottom:641.748000px;}
.y224{bottom:644.085000px;}
.yd8{bottom:646.416000px;}
.ya6{bottom:646.927500px;}
.y3a{bottom:647.869500px;}
.y104{bottom:648.337500px;}
.y79{bottom:648.760500px;}
.y15{bottom:649.465500px;}
.y223{bottom:657.535500px;}
.y1bf{bottom:657.963000px;}
.y193{bottom:658.365000px;}
.y160{bottom:658.383000px;}
.y135{bottom:660.499500px;}
.yd7{bottom:664.348500px;}
.y14{bottom:664.408500px;}
.y1f1{bottom:664.468500px;}
.ya5{bottom:664.860000px;}
.y78{bottom:666.694500px;}
.y39{bottom:667.398000px;}
.y222{bottom:670.984500px;}
.y103{bottom:675.244500px;}
.y1be{bottom:675.706500px;}
.y192{bottom:676.297500px;}
.y15f{bottom:676.315500px;}
.y134{bottom:678.433500px;}
.y13{bottom:679.353000px;}
.yd6{bottom:682.281000px;}
.ya4{bottom:682.794000px;}
.y221{bottom:684.433500px;}
.y77{bottom:684.627000px;}
.y38{bottom:685.330500px;}
.y1f0{bottom:692.602500px;}
.y1bd{bottom:693.639000px;}
.y191{bottom:694.230000px;}
.y12{bottom:694.297500px;}
.y133{bottom:696.366000px;}
.y220{bottom:697.884000px;}
.y15e{bottom:698.847000px;}
.yd5{bottom:700.213500px;}
.ya3{bottom:700.726500px;}
.y37{bottom:703.263000px;}
.y11{bottom:709.240500px;}
.y1ef{bottom:710.535000px;}
.y21f{bottom:711.333000px;}
.y1bc{bottom:711.573000px;}
.y190{bottom:712.162500px;}
.y76{bottom:715.432500px;}
.ya2{bottom:718.659000px;}
.y132{bottom:720.046500px;}
.y36{bottom:721.195500px;}
.y10{bottom:724.185000px;}
.y21e{bottom:724.782000px;}
.yd4{bottom:725.104500px;}
.y15d{bottom:726.211500px;}
.y1ee{bottom:728.467500px;}
.y1bb{bottom:729.505500px;}
.y18f{bottom:730.095000px;}
.ya1{bottom:736.591500px;}
.y21d{bottom:738.232500px;}
.y35{bottom:739.128000px;}
.yf{bottom:739.129500px;}
.y15c{bottom:744.145500px;}
.y1ed{bottom:746.400000px;}
.y1ba{bottom:747.438000px;}
.y131{bottom:749.542500px;}
.y102{bottom:750.228000px;}
.y21c{bottom:751.681500px;}
.y18e{bottom:752.596500px;}
.ye{bottom:754.072500px;}
.y75{bottom:755.019000px;}
.ya0{bottom:755.649000px;}
.yd3{bottom:756.312000px;}
.y34{bottom:757.060500px;}
.y15b{bottom:762.078000px;}
.y1ec{bottom:764.332500px;}
.y21b{bottom:765.132000px;}
.y1b9{bottom:765.370500px;}
.y130{bottom:767.475000px;}
.y101{bottom:768.160500px;}
.yd{bottom:769.017000px;}
.y74{bottom:772.951500px;}
.y9f{bottom:773.581500px;}
.yd2{bottom:774.244500px;}
.y33{bottom:774.994500px;}
.y21a{bottom:778.581000px;}
.y18d{bottom:779.785500px;}
.y15a{bottom:780.010500px;}
.y1eb{bottom:782.266500px;}
.y1b8{bottom:783.303000px;}
.yc{bottom:783.960000px;}
.y12f{bottom:785.407500px;}
.y100{bottom:786.093000px;}
.y219{bottom:792.030000px;}
.yd1{bottom:792.177000px;}
.y32{bottom:792.927000px;}
.y18c{bottom:797.718000px;}
.y159{bottom:797.943000px;}
.yb{bottom:798.904500px;}
.y1ea{bottom:800.199000px;}
.y1b7{bottom:801.235500px;}
.y12e{bottom:803.340000px;}
.yff{bottom:804.027000px;}
.y218{bottom:805.480500px;}
.yd0{bottom:810.109500px;}
.y31{bottom:810.859500px;}
.ya{bottom:813.849000px;}
.y18b{bottom:815.650500px;}
.y158{bottom:815.875500px;}
.y1e9{bottom:818.131500px;}
.y217{bottom:818.929500px;}
.y1b6{bottom:819.169500px;}
.y12d{bottom:821.274000px;}
.yfe{bottom:823.561500px;}
.y73{bottom:824.898000px;}
.ycf{bottom:828.042000px;}
.y9{bottom:828.792000px;}
.y216{bottom:832.378500px;}
.y72{bottom:838.347000px;}
.y12c{bottom:839.206500px;}
.yfd{bottom:843.096000px;}
.y215{bottom:845.829000px;}
.yce{bottom:845.976000px;}
.y71{bottom:851.797500px;}
.y12b{bottom:857.139000px;}
.y214{bottom:859.278000px;}
.y157{bottom:860.560500px;}
.y18a{bottom:862.489500px;}
.ycd{bottom:864.283500px;}
.y70{bottom:865.246500px;}
.y1b5{bottom:865.471500px;}
.y1e8{bottom:866.484000px;}
.yfc{bottom:868.609500px;}
.y213{bottom:872.727000px;}
.y156{bottom:874.011000px;}
.y189{bottom:875.940000px;}
.y6f{bottom:878.695500px;}
.y1b4{bottom:878.922000px;}
.y1e7{bottom:879.933000px;}
.ycc{bottom:882.216000px;}
.y212{bottom:886.177500px;}
.y155{bottom:887.460000px;}
.yfb{bottom:888.144000px;}
.y188{bottom:889.389000px;}
.y8{bottom:889.602000px;}
.y1b3{bottom:892.371000px;}
.y211{bottom:899.626500px;}
.ycb{bottom:900.148500px;}
.y154{bottom:900.909000px;}
.y5a{bottom:905.595009px;}
.y1d9{bottom:906.832500px;}
.yfa{bottom:907.680000px;}
.y12a{bottom:911.251500px;}
.y210{bottom:913.077000px;}
.y7{bottom:913.518000px;}
.y17a{bottom:916.288500px;}
.yca{bottom:918.081000px;}
.y1a6{bottom:919.270500px;}
.y129{bottom:924.700500px;}
.y20f{bottom:926.526000px;}
.yf9{bottom:927.214500px;}
.y149{bottom:927.808500px;}
.y6{bottom:932.010000px;}
.yc9{bottom:936.013500px;}
.y128{bottom:938.149500px;}
.y20e{bottom:939.975000px;}
.yf8{bottom:945.147000px;}
.y5{bottom:950.503500px;}
.y127{bottom:951.600000px;}
.yc8{bottom:953.947500px;}
.y20d{bottom:962.167500px;}
.y126{bottom:965.049000px;}
.yf7{bottom:969.805500px;}
.y4{bottom:971.295000px;}
.yc7{bottom:971.880000px;}
.y125{bottom:978.498000px;}
.yf6{bottom:987.738000px;}
.yc6{bottom:990.187500px;}
.y3{bottom:990.528000px;}
.y124{bottom:991.948500px;}
.y123{bottom:1005.397500px;}
.yf5{bottom:1005.670500px;}
.yc5{bottom:1008.120000px;}
.y122{bottom:1018.846500px;}
.yf4{bottom:1023.603000px;}
.yc4{bottom:1026.052500px;}
.y121{bottom:1032.297000px;}
.y2{bottom:1037.602500px;}
.yf3{bottom:1041.535500px;}
.yc3{bottom:1043.985000px;}
.y120{bottom:1053.555000px;}
.yf2{bottom:1059.468000px;}
.y20c{bottom:1061.917500px;}
.yc2{bottom:1061.919000px;}
.yf1{bottom:1077.402000px;}
.y1{bottom:1079.445000px;}
.yc1{bottom:1079.851500px;}
.y11f{bottom:1084.335000px;}
.yf0{bottom:1097.782500px;}
.yc0{bottom:1097.784000px;}
.he{height:29.577755px;}
.hd{height:30.324130px;}
.h1f{height:30.432542px;}
.h18{height:32.142185px;}
.ha{height:32.900573px;}
.h15{height:33.187496px;}
.h1c{height:33.345743px;}
.h23{height:33.380573px;}
.h3{height:33.665702px;}
.h1e{height:35.504633px;}
.h22{height:35.582023px;}
.hc{height:35.783326px;}
.hf{height:36.926870px;}
.h6{height:37.336090px;}
.h17{height:37.499216px;}
.h5{height:37.605082px;}
.h1b{height:38.903367px;}
.h7{height:40.348800px;}
.h10{height:40.826735px;}
.h8{height:41.125613px;}
.h14{height:41.155317px;}
.h21{height:41.512360px;}
.h9{height:44.831700px;}
.h13{height:49.473619px;}
.h1a{height:53.449606px;}
.h4{height:55.355702px;}
.h2{height:57.419702px;}
.h11{height:59.939700px;}
.h12{height:59.945700px;}
.h1{height:98.701718px;}
.h16{height:182.527352px;}
.h1d{height:191.068314px;}
.h19{height:194.048572px;}
.h20{height:203.504222px;}
.hb{height:204.742071px;}
.h0{height:1188.000000px;}
.w1{width:343.056711px;}
.w3{width:354.475116px;}
.w4{width:381.155315px;}
.w5{width:381.156088px;}
.w2{width:381.159203px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x27{left:2.738485px;}
.x28{left:3.954009px;}
.x26{left:5.318808px;}
.x47{left:12.700990px;}
.x58{left:14.060243px;}
.x46{left:17.955925px;}
.x11{left:18.966799px;}
.x4f{left:21.976275px;}
.x45{left:23.210860px;}
.x57{left:25.694873px;}
.x56{left:31.512188px;}
.x16{left:37.839411px;}
.x15{left:41.187434px;}
.x4d{left:43.861683px;}
.x43{left:46.640235px;}
.x21{left:47.840830px;}
.x54{left:55.268426px;}
.x2b{left:59.910772px;}
.x48{left:67.052032px;}
.x9{left:68.881500px;}
.xd{left:71.529000px;}
.xe{left:74.746500px;}
.x59{left:80.045216px;}
.x4b{left:82.224000px;}
.x8{left:83.826000px;}
.x10{left:87.940500px;}
.x50{left:92.843874px;}
.x2a{left:94.542548px;}
.x29{left:95.544823px;}
.x41{left:96.907500px;}
.x1{left:99.073500px;}
.x42{left:105.675000px;}
.x1d{left:107.678740px;}
.x5a{left:112.068000px;}
.x1c{left:113.436486px;}
.x2c{left:114.652010px;}
.x35{left:129.447000px;}
.x24{left:131.091000px;}
.x17{left:147.705738px;}
.x18{left:149.667637px;}
.x2d{left:163.784777px;}
.x4c{left:164.983391px;}
.x4e{left:169.887441px;}
.x40{left:174.601500px;}
.x1e{left:178.264443px;}
.x2{left:180.255000px;}
.x44{left:183.283687px;}
.x55{left:184.974983px;}
.x2e{left:188.351161px;}
.x2f{left:192.808083px;}
.x5b{left:194.287500px;}
.x3{left:198.546000px;}
.xa{left:201.147000px;}
.x31{left:207.309073px;}
.x5{left:211.903500px;}
.x1b{left:213.280069px;}
.x1a{left:229.657665px;}
.x22{left:232.024732px;}
.x19{left:235.116862px;}
.x30{left:237.483928px;}
.x33{left:242.943125px;}
.x36{left:247.990500px;}
.x6{left:252.784500px;}
.x51{left:254.309742px;}
.x1f{left:255.908716px;}
.x20{left:257.124247px;}
.x32{left:262.050312px;}
.x23{left:263.415111px;}
.x12{left:274.568086px;}
.x13{left:276.060835px;}
.x14{left:282.138449px;}
.x34{left:289.708825px;}
.xf{left:295.974000px;}
.x7{left:307.749000px;}
.x4{left:310.972500px;}
.x49{left:319.097013px;}
.x52{left:354.192510px;}
.x53{left:373.894304px;}
.x37{left:409.152000px;}
.x3f{left:465.576000px;}
.xb{left:467.967000px;}
.x3a{left:470.208000px;}
.x5d{left:473.944500px;}
.x38{left:475.438500px;}
.xc{left:482.910000px;}
.x25{left:487.024500px;}
.x5e{left:495.355500px;}
.x3b{left:497.271000px;}
.x3c{left:505.924500px;}
.x3e{left:518.241000px;}
.x39{left:539.622000px;}
.x4a{left:575.589000px;}
.x3d{left:584.058000px;}
.x5f{left:611.370000px;}
.x5c{left:616.699500px;}
@media print{
.v2{vertical-align:-19.280000pt;}
.v7{vertical-align:-7.968000pt;}
.v0{vertical-align:0.000000pt;}
.v4{vertical-align:4.852619pt;}
.v6{vertical-align:13.429333pt;}
.v5{vertical-align:15.002667pt;}
.v3{vertical-align:19.280000pt;}
.v1{vertical-align:21.114667pt;}
.v8{vertical-align:23.304222pt;}
.ls8{letter-spacing:0.000000pt;}
.ls6{letter-spacing:0.000495pt;}
.ls2f{letter-spacing:0.000501pt;}
.ls21{letter-spacing:0.000882pt;}
.lsd{letter-spacing:0.001146pt;}
.ls1d{letter-spacing:0.002079pt;}
.ls3f{letter-spacing:0.002422pt;}
.ls28{letter-spacing:0.002906pt;}
.ls39{letter-spacing:0.003733pt;}
.ls54{letter-spacing:0.746682pt;}
.ls41{letter-spacing:2.108364pt;}
.ls40{letter-spacing:2.124101pt;}
.ls42{letter-spacing:2.125802pt;}
.ls43{letter-spacing:2.125997pt;}
.lsa{letter-spacing:2.177630pt;}
.ls7{letter-spacing:2.635446pt;}
.ls22{letter-spacing:2.651242pt;}
.ls30{letter-spacing:2.652911pt;}
.ls0{letter-spacing:2.653258pt;}
.ls2{letter-spacing:2.653433pt;}
.ls46{letter-spacing:2.654903pt;}
.ls11{letter-spacing:2.655207pt;}
.ls4b{letter-spacing:2.655711pt;}
.lse{letter-spacing:2.655956pt;}
.ls10{letter-spacing:2.656015pt;}
.ls31{letter-spacing:2.656576pt;}
.lsf{letter-spacing:2.656693pt;}
.ls1{letter-spacing:2.658591pt;}
.ls9{letter-spacing:2.661044pt;}
.ls14{letter-spacing:2.663295pt;}
.ls16{letter-spacing:2.668629pt;}
.ls4e{letter-spacing:5.107938pt;}
.ls20{letter-spacing:5.113271pt;}
.ls23{letter-spacing:6.012540pt;}
.ls13{letter-spacing:7.383043pt;}
.ls1f{letter-spacing:8.855412pt;}
.ls29{letter-spacing:11.803145pt;}
.ls2e{letter-spacing:11.808479pt;}
.ls2d{letter-spacing:13.821976pt;}
.ls37{letter-spacing:14.471295pt;}
.ls3d{letter-spacing:14.754079pt;}
.ls27{letter-spacing:14.759467pt;}
.lsc{letter-spacing:14.875812pt;}
.ls44{letter-spacing:14.878767pt;}
.ls18{letter-spacing:15.047295pt;}
.ls45{letter-spacing:15.324533pt;}
.ls26{letter-spacing:16.771310pt;}
.ls2c{letter-spacing:17.425962pt;}
.ls1e{letter-spacing:18.593867pt;}
.ls1c{letter-spacing:18.594906pt;}
.ls33{letter-spacing:18.595733pt;}
.ls4f{letter-spacing:20.851938pt;}
.ls4a{letter-spacing:20.982154pt;}
.ls19{letter-spacing:21.169962pt;}
.ls3{letter-spacing:21.250591pt;}
.ls4{letter-spacing:21.250767pt;}
.ls5{letter-spacing:21.256100pt;}
.ls12{letter-spacing:21.991295pt;}
.ls1b{letter-spacing:22.983043pt;}
.ls38{letter-spacing:24.437812pt;}
.ls48{letter-spacing:25.545271pt;}
.ls25{letter-spacing:25.937873pt;}
.ls24{letter-spacing:26.565867pt;}
.ls15{letter-spacing:26.823295pt;}
.ls3b{letter-spacing:27.388800pt;}
.ls17{letter-spacing:28.327295pt;}
.ls4d{letter-spacing:28.841271pt;}
.ls4c{letter-spacing:30.318604pt;}
.ls50{letter-spacing:30.606604pt;}
.ls47{letter-spacing:30.699242pt;}
.ls1a{letter-spacing:31.138133pt;}
.ls3e{letter-spacing:35.879043pt;}
.ls2b{letter-spacing:39.195200pt;}
.ls2a{letter-spacing:50.926604pt;}
.lsb{letter-spacing:67.936666pt;}
.ls49{letter-spacing:91.872036pt;}
.ls36{letter-spacing:106.272533pt;}
.ls34{letter-spacing:118.901867pt;}
.ls51{letter-spacing:235.332173pt;}
.ls35{letter-spacing:239.870400pt;}
.ls52{letter-spacing:243.639533pt;}
.ls53{letter-spacing:250.636699pt;}
.ls3a{letter-spacing:261.752643pt;}
.ls32{letter-spacing:286.077976pt;}
.ls3c{letter-spacing:509.479295pt;}
.ws122{word-spacing:-91.872036pt;}
.ws76{word-spacing:-87.347142pt;}
.ws73{word-spacing:-82.494523pt;}
.ws3{word-spacing:-45.163900pt;}
.wsbc{word-spacing:-38.387858pt;}
.wsc9{word-spacing:-38.362652pt;}
.wsc6{word-spacing:-34.611401pt;}
.wsc5{word-spacing:-20.870693pt;}
.wscb{word-spacing:-19.855535pt;}
.wscc{word-spacing:-19.840186pt;}
.ws4f{word-spacing:-19.410476pt;}
.wsba{word-spacing:-14.760588pt;}
.ws56{word-spacing:-13.283467pt;}
.ws1a{word-spacing:-13.262246pt;}
.ws59{word-spacing:-10.626800pt;}
.wsfa{word-spacing:-10.609830pt;}
.ws50{word-spacing:-9.705238pt;}
.ws47{word-spacing:-5.887232pt;}
.ws1bc{word-spacing:-3.570605pt;}
.ws75{word-spacing:-3.563642pt;}
.ws77{word-spacing:-3.563618pt;}
.wsfc{word-spacing:-3.528098pt;}
.ws78{word-spacing:-3.430977pt;}
.wsc7{word-spacing:-2.964870pt;}
.wsa2{word-spacing:-2.656693pt;}
.ws13d{word-spacing:-0.956410pt;}
.wsb6{word-spacing:-0.906623pt;}
.ws6a{word-spacing:-0.903276pt;}
.ws17f{word-spacing:-0.755437pt;}
.ws17e{word-spacing:-0.753333pt;}
.ws180{word-spacing:-0.743874pt;}
.ws41{word-spacing:-0.690740pt;}
.ws68{word-spacing:-0.584473pt;}
.ws65{word-spacing:-0.531339pt;}
.ws109{word-spacing:-0.478205pt;}
.ws10{word-spacing:-0.430387pt;}
.ws17b{word-spacing:-0.425071pt;}
.ws1e{word-spacing:-0.159402pt;}
.ws71{word-spacing:-0.106268pt;}
.wsc0{word-spacing:-0.053134pt;}
.ws4{word-spacing:-0.047821pt;}
.wse8{word-spacing:-0.043038pt;}
.ws1a3{word-spacing:-0.042507pt;}
.ws177{word-spacing:-0.014802pt;}
.wsf7{word-spacing:-0.003347pt;}
.ws4d{word-spacing:0.000000pt;}
.ws100{word-spacing:0.106268pt;}
.ws7b{word-spacing:0.127522pt;}
.ws8d{word-spacing:0.265669pt;}
.ws18f{word-spacing:0.297550pt;}
.ws192{word-spacing:0.382565pt;}
.ws165{word-spacing:0.478205pt;}
.ws197{word-spacing:0.510086pt;}
.wsa9{word-spacing:0.531339pt;}
.ws16d{word-spacing:0.584473pt;}
.ws1b8{word-spacing:0.595101pt;}
.ws161{word-spacing:0.637606pt;}
.ws3c{word-spacing:0.690740pt;}
.ws7e{word-spacing:0.743874pt;}
.ws155{word-spacing:0.903276pt;}
.wsab{word-spacing:1.009543pt;}
.ws21{word-spacing:1.062677pt;}
.ws91{word-spacing:1.168945pt;}
.ws19d{word-spacing:1.190202pt;}
.ws88{word-spacing:1.222079pt;}
.ws15b{word-spacing:1.360230pt;}
.ws117{word-spacing:1.381481pt;}
.ws8e{word-spacing:1.434614pt;}
.ws6f{word-spacing:1.594016pt;}
.ws199{word-spacing:1.615274pt;}
.ws140{word-spacing:1.647150pt;}
.ws42{word-spacing:1.753418pt;}
.ws9f{word-spacing:1.806551pt;}
.ws85{word-spacing:1.912819pt;}
.ws102{word-spacing:2.019087pt;}
.ws104{word-spacing:2.038911pt;}
.ws94{word-spacing:2.072221pt;}
.ws176{word-spacing:2.088918pt;}
.ws4b{word-spacing:2.125355pt;}
.ws7c{word-spacing:2.125360pt;}
.ws18a{word-spacing:2.167867pt;}
.ws69{word-spacing:2.231622pt;}
.ws6c{word-spacing:2.284756pt;}
.wsb8{word-spacing:2.292019pt;}
.ws52{word-spacing:2.295389pt;}
.ws6d{word-spacing:2.337890pt;}
.ws18e{word-spacing:2.337896pt;}
.ws134{word-spacing:2.444158pt;}
.ws26{word-spacing:2.550426pt;}
.ws2d{word-spacing:2.603559pt;}
.ws124{word-spacing:2.635446pt;}
.ws89{word-spacing:2.709827pt;}
.ws9d{word-spacing:2.762961pt;}
.ws194{word-spacing:2.847982pt;}
.ws1ba{word-spacing:2.932997pt;}
.ws17d{word-spacing:2.962163pt;}
.ws17c{word-spacing:2.975497pt;}
.ws18d{word-spacing:2.975504pt;}
.ws1b9{word-spacing:3.018011pt;}
.wsa5{word-spacing:3.028630pt;}
.wsfe{word-spacing:3.051347pt;}
.wsfd{word-spacing:3.081764pt;}
.wsd3{word-spacing:3.188032pt;}
.ws9e{word-spacing:3.347434pt;}
.wse5{word-spacing:3.353284pt;}
.ws3a{word-spacing:3.400567pt;}
.ws175{word-spacing:3.453701pt;}
.ws9c{word-spacing:3.506835pt;}
.wsa{word-spacing:3.586560pt;}
.ws97{word-spacing:3.613103pt;}
.wse4{word-spacing:3.666237pt;}
.ws178{word-spacing:3.719371pt;}
.ws191{word-spacing:3.740634pt;}
.ws113{word-spacing:3.772505pt;}
.ws92{word-spacing:3.825638pt;}
.ws19b{word-spacing:3.910662pt;}
.ws8c{word-spacing:3.931906pt;}
.ws131{word-spacing:3.985040pt;}
.ws8f{word-spacing:4.038174pt;}
.ws18{word-spacing:4.064768pt;}
.ws15e{word-spacing:4.091308pt;}
.ws1b0{word-spacing:4.123198pt;}
.ws11f{word-spacing:4.144442pt;}
.ws153{word-spacing:4.154410pt;}
.ws151{word-spacing:4.176282pt;}
.ws120{word-spacing:4.197575pt;}
.wsf8{word-spacing:4.214423pt;}
.wsf9{word-spacing:4.216727pt;}
.ws1b7{word-spacing:4.250496pt;}
.ws18b{word-spacing:4.250588pt;}
.ws14d{word-spacing:4.250709pt;}
.ws4c{word-spacing:4.250720pt;}
.ws14f{word-spacing:4.303843pt;}
.ws14e{word-spacing:4.321882pt;}
.ws168{word-spacing:4.356977pt;}
.ws7d{word-spacing:4.420749pt;}
.ws3d{word-spacing:4.463245pt;}
.ws25{word-spacing:4.516379pt;}
.ws133{word-spacing:4.569513pt;}
.wsa0{word-spacing:4.728914pt;}
.ws53{word-spacing:4.760806pt;}
.ws16a{word-spacing:4.782048pt;}
.wsbd{word-spacing:4.782080pt;}
.ws126{word-spacing:4.835182pt;}
.ws118{word-spacing:4.888316pt;}
.ws193{word-spacing:4.888328pt;}
.ws1aa{word-spacing:4.930835pt;}
.ws16b{word-spacing:4.941450pt;}
.ws16c{word-spacing:4.945897pt;}
.ws13c{word-spacing:4.994583pt;}
.wsff{word-spacing:5.047717pt;}
.ws5e{word-spacing:5.100851pt;}
.ws3e{word-spacing:5.153985pt;}
.wsb{word-spacing:5.164646pt;}
.ws1b1{word-spacing:5.185878pt;}
.ws150{word-spacing:5.207119pt;}
.ws57{word-spacing:5.261378pt;}
.ws107{word-spacing:5.265778pt;}
.wsa3{word-spacing:5.269183pt;}
.wsa4{word-spacing:5.281074pt;}
.ws58{word-spacing:5.299129pt;}
.ws12a{word-spacing:5.299657pt;}
.wscf{word-spacing:5.309585pt;}
.wsbf{word-spacing:5.310222pt;}
.wsc2{word-spacing:5.311562pt;}
.wsbb{word-spacing:5.311689pt;}
.ws162{word-spacing:5.312297pt;}
.wsb9{word-spacing:5.312815pt;}
.wsc1{word-spacing:5.312822pt;}
.wsbe{word-spacing:5.313029pt;}
.wscd{word-spacing:5.313074pt;}
.ws2{word-spacing:5.313387pt;}
.wsfb{word-spacing:5.313400pt;}
.ws49{word-spacing:5.313897pt;}
.ws138{word-spacing:5.314385pt;}
.ws9{word-spacing:5.403750pt;}
.ws2f{word-spacing:5.472788pt;}
.ws5d{word-spacing:5.525922pt;}
.ws1ab{word-spacing:5.610950pt;}
.wsaf{word-spacing:5.632190pt;}
.ws80{word-spacing:5.685324pt;}
.ws141{word-spacing:5.738458pt;}
.ws181{word-spacing:5.777824pt;}
.ws164{word-spacing:5.791591pt;}
.ws1{word-spacing:5.844747pt;}
.ws14b{word-spacing:5.908022pt;}
.ws15c{word-spacing:5.908501pt;}
.wsac{word-spacing:5.950993pt;}
.ws16{word-spacing:5.977600pt;}
.ws1a0{word-spacing:5.993515pt;}
.ws87{word-spacing:6.004127pt;}
.ws8a{word-spacing:6.057261pt;}
.ws20{word-spacing:6.110395pt;}
.ws15d{word-spacing:6.163529pt;}
.ws112{word-spacing:6.216662pt;}
.ws8b{word-spacing:6.322930pt;}
.ws33{word-spacing:6.376064pt;}
.ws125{word-spacing:6.376080pt;}
.ws14c{word-spacing:6.429198pt;}
.ws7{word-spacing:6.455808pt;}
.ws127{word-spacing:6.482332pt;}
.ws1b2{word-spacing:6.503602pt;}
.ws5{word-spacing:6.599270pt;}
.wsc4{word-spacing:6.641733pt;}
.wsc3{word-spacing:6.642843pt;}
.wsa1{word-spacing:6.694867pt;}
.ws16f{word-spacing:6.758645pt;}
.ws13e{word-spacing:6.801135pt;}
.ws13f{word-spacing:6.854269pt;}
.ws1b6{word-spacing:6.886166pt;}
.ws61{word-spacing:6.907403pt;}
.ws83{word-spacing:7.013670pt;}
.ws7a{word-spacing:7.056195pt;}
.ws62{word-spacing:7.066804pt;}
.ws119{word-spacing:7.119938pt;}
.ws11a{word-spacing:7.146171pt;}
.ws11b{word-spacing:7.173072pt;}
.wsb7{word-spacing:7.332474pt;}
.ws39{word-spacing:7.385607pt;}
.ws15f{word-spacing:7.438741pt;}
.ws1a4{word-spacing:7.438760pt;}
.ws143{word-spacing:7.491875pt;}
.ws142{word-spacing:7.598143pt;}
.ws5b{word-spacing:7.651277pt;}
.ws19f{word-spacing:7.693803pt;}
.ws2c{word-spacing:7.704411pt;}
.ws19a{word-spacing:7.736310pt;}
.ws160{word-spacing:7.757545pt;}
.ws2b{word-spacing:7.863812pt;}
.ws1ac{word-spacing:7.863832pt;}
.ws48{word-spacing:7.916946pt;}
.ws11{word-spacing:7.938253pt;}
.ws6b{word-spacing:7.970080pt;}
.ws67{word-spacing:8.023214pt;}
.ws95{word-spacing:8.076348pt;}
.wsa8{word-spacing:8.129482pt;}
.ws1b3{word-spacing:8.161382pt;}
.ws137{word-spacing:8.162385pt;}
.ws136{word-spacing:8.182615pt;}
.ws15{word-spacing:8.272998pt;}
.ws86{word-spacing:8.288883pt;}
.wse7{word-spacing:8.336282pt;}
.wse9{word-spacing:8.342017pt;}
.ws6{word-spacing:8.368640pt;}
.ws1ad{word-spacing:8.373918pt;}
.ws1f{word-spacing:8.395151pt;}
.ws2e{word-spacing:8.448285pt;}
.ws27{word-spacing:8.501419pt;}
.ws182{word-spacing:8.554553pt;}
.ws11d{word-spacing:8.607686pt;}
.ws14{word-spacing:8.703386pt;}
.ws34{word-spacing:8.713954pt;}
.ws32{word-spacing:8.767088pt;}
.ws46{word-spacing:8.820222pt;}
.ws99{word-spacing:8.926490pt;}
.ws5c{word-spacing:8.979623pt;}
.ws179{word-spacing:9.085891pt;}
.ws123{word-spacing:9.139048pt;}
.ws14a{word-spacing:9.245293pt;}
.ws1d{word-spacing:9.298427pt;}
.ws45{word-spacing:9.351561pt;}
.ws12c{word-spacing:9.404694pt;}
.ws66{word-spacing:9.457828pt;}
.ws1b{word-spacing:9.510962pt;}
.wsd{word-spacing:9.516339pt;}
.ws146{word-spacing:9.649134pt;}
.ws9a{word-spacing:9.670364pt;}
.ws54{word-spacing:9.691642pt;}
.ws163{word-spacing:9.723498pt;}
.ws1af{word-spacing:9.734149pt;}
.wsa6{word-spacing:9.776631pt;}
.ws129{word-spacing:9.882899pt;}
.ws5f{word-spacing:9.936033pt;}
.wsaa{word-spacing:9.989167pt;}
.ws40{word-spacing:10.095435pt;}
.wse0{word-spacing:10.148569pt;}
.ws1c{word-spacing:10.254836pt;}
.wsb0{word-spacing:10.361104pt;}
.wsf2{word-spacing:10.414238pt;}
.ws132{word-spacing:10.419666pt;}
.wsb1{word-spacing:10.467372pt;}
.ws13{word-spacing:10.568397pt;}
.ws11e{word-spacing:10.626773pt;}
.ws12d{word-spacing:10.679907pt;}
.wsb4{word-spacing:10.839309pt;}
.ws190{word-spacing:10.881843pt;}
.wsb3{word-spacing:10.892443pt;}
.ws24{word-spacing:10.998710pt;}
.wsf6{word-spacing:11.051844pt;}
.ws196{word-spacing:11.094379pt;}
.ws93{word-spacing:11.104978pt;}
.wsee{word-spacing:11.264380pt;}
.wsf0{word-spacing:11.271215pt;}
.ws158{word-spacing:11.287718pt;}
.ws12f{word-spacing:11.317514pt;}
.ws51{word-spacing:11.349422pt;}
.ws8{word-spacing:11.429171pt;}
.ws1a6{word-spacing:11.519451pt;}
.ws60{word-spacing:11.530049pt;}
.ws174{word-spacing:11.583183pt;}
.ws1bd{word-spacing:11.774494pt;}
.ws36{word-spacing:11.795718pt;}
.ws30{word-spacing:11.848852pt;}
.ws130{word-spacing:11.901986pt;}
.ws128{word-spacing:12.008254pt;}
.ws145{word-spacing:12.114552pt;}
.ws1b5{word-spacing:12.157059pt;}
.ws13a{word-spacing:12.201165pt;}
.ws139{word-spacing:12.201623pt;}
.ws13b{word-spacing:12.220789pt;}
.ws189{word-spacing:12.242074pt;}
.ws29{word-spacing:12.273923pt;}
.ws156{word-spacing:12.327057pt;}
.ws157{word-spacing:12.327718pt;}
.wsb5{word-spacing:12.380191pt;}
.wsae{word-spacing:12.433325pt;}
.ws3f{word-spacing:12.539593pt;}
.wsa7{word-spacing:12.592726pt;}
.wsed{word-spacing:12.612000pt;}
.ws63{word-spacing:12.752128pt;}
.ws0{word-spacing:12.752160pt;}
.ws121{word-spacing:12.858396pt;}
.ws147{word-spacing:12.911530pt;}
.ws3b{word-spacing:12.964663pt;}
.wsd4{word-spacing:13.070931pt;}
.ws82{word-spacing:13.124065pt;}
.ws7f{word-spacing:13.336601pt;}
.ws101{word-spacing:13.356677pt;}
.ws96{word-spacing:13.389734pt;}
.ws195{word-spacing:13.432275pt;}
.ws10d{word-spacing:13.442868pt;}
.ws169{word-spacing:13.549136pt;}
.ws1bb{word-spacing:13.559797pt;}
.ws11c{word-spacing:13.761671pt;}
.ws90{word-spacing:13.921073pt;}
.ws135{word-spacing:13.974207pt;}
.ws1a5{word-spacing:13.984869pt;}
.ws81{word-spacing:14.186742pt;}
.ws43{word-spacing:14.239876pt;}
.ws19c{word-spacing:14.494955pt;}
.ws84{word-spacing:14.505546pt;}
.ws10e{word-spacing:14.535230pt;}
.wsb2{word-spacing:14.558679pt;}
.ws114{word-spacing:14.758510pt;}
.ws115{word-spacing:14.771215pt;}
.ws10c{word-spacing:14.824349pt;}
.ws10b{word-spacing:14.833897pt;}
.ws18c{word-spacing:14.835013pt;}
.ws116{word-spacing:14.930617pt;}
.ws35{word-spacing:14.983750pt;}
.ws5a{word-spacing:15.036884pt;}
.ws167{word-spacing:15.090018pt;}
.ws1a9{word-spacing:15.090056pt;}
.ws10f{word-spacing:15.125615pt;}
.ws111{word-spacing:15.143152pt;}
.wsd2{word-spacing:15.196286pt;}
.wsdb{word-spacing:15.249420pt;}
.ws103{word-spacing:15.277759pt;}
.ws105{word-spacing:15.282010pt;}
.ws1a1{word-spacing:15.302592pt;}
.ws19e{word-spacing:15.515128pt;}
.ws22{word-spacing:15.674491pt;}
.ws12e{word-spacing:15.727625pt;}
.ws12{word-spacing:15.733043pt;}
.ws28{word-spacing:15.833892pt;}
.wseb{word-spacing:15.879215pt;}
.wsec{word-spacing:15.887026pt;}
.ws144{word-spacing:15.887132pt;}
.ws19{word-spacing:15.940160pt;}
.ws17{word-spacing:15.972147pt;}
.ws172{word-spacing:16.037595pt;}
.ws171{word-spacing:16.040032pt;}
.ws173{word-spacing:16.046428pt;}
.wse{word-spacing:16.115610pt;}
.ws37{word-spacing:16.205829pt;}
.wsd7{word-spacing:16.258963pt;}
.ws186{word-spacing:16.418365pt;}
.ws198{word-spacing:16.450286pt;}
.ws184{word-spacing:16.471499pt;}
.ws4a{word-spacing:16.524633pt;}
.wsc{word-spacing:16.545997pt;}
.wse6{word-spacing:16.618591pt;}
.ws55{word-spacing:16.684034pt;}
.ws64{word-spacing:16.843436pt;}
.wse3{word-spacing:16.903343pt;}
.ws187{word-spacing:16.949703pt;}
.ws2a{word-spacing:17.002837pt;}
.ws98{word-spacing:17.055971pt;}
.ws12b{word-spacing:17.109105pt;}
.ws108{word-spacing:17.162239pt;}
.ws188{word-spacing:17.374774pt;}
.ws152{word-spacing:17.422193pt;}
.ws70{word-spacing:17.534176pt;}
.wsd1{word-spacing:17.640444pt;}
.ws159{word-spacing:17.852979pt;}
.wsca{word-spacing:17.942407pt;}
.ws9b{word-spacing:17.959247pt;}
.wsea{word-spacing:18.065515pt;}
.ws183{word-spacing:18.171782pt;}
.ws23{word-spacing:18.278050pt;}
.wsf4{word-spacing:18.490586pt;}
.wsad{word-spacing:18.543719pt;}
.ws17a{word-spacing:18.578573pt;}
.ws1b4{word-spacing:18.745675pt;}
.ws1ae{word-spacing:18.958211pt;}
.ws106{word-spacing:19.218227pt;}
.ws149{word-spacing:19.234460pt;}
.ws1a7{word-spacing:19.495841pt;}
.ws1a8{word-spacing:19.510805pt;}
.ws170{word-spacing:19.712665pt;}
.ws44{word-spacing:19.765798pt;}
.ws6e{word-spacing:19.872066pt;}
.ws31{word-spacing:20.244003pt;}
.ws148{word-spacing:20.297137pt;}
.ws38{word-spacing:20.775342pt;}
.wsf{word-spacing:20.802048pt;}
.ws166{word-spacing:21.306681pt;}
.wse1{word-spacing:23.166366pt;}
.wsda{word-spacing:23.378901pt;}
.wsf1{word-spacing:23.666010pt;}
.wsf3{word-spacing:23.666443pt;}
.wsef{word-spacing:24.515526pt;}
.wsde{word-spacing:24.654114pt;}
.ws154{word-spacing:25.866078pt;}
.ws1a2{word-spacing:25.886885pt;}
.wsd9{word-spacing:28.054682pt;}
.ws10a{word-spacing:28.070477pt;}
.wsdd{word-spacing:28.221759pt;}
.ws110{word-spacing:28.364505pt;}
.wsdc{word-spacing:28.472643pt;}
.wsc8{word-spacing:28.739980pt;}
.wsd5{word-spacing:28.957957pt;}
.wsd6{word-spacing:29.474227pt;}
.wsf5{word-spacing:31.735127pt;}
.ws185{word-spacing:35.174620pt;}
.wse2{word-spacing:36.429110pt;}
.ws74{word-spacing:36.678976pt;}
.wsdf{word-spacing:37.885759pt;}
.wsd8{word-spacing:41.304859pt;}
.ws79{word-spacing:41.531595pt;}
.ws72{word-spacing:48.526190pt;}
.ws16e{word-spacing:67.037935pt;}
.ws15a{word-spacing:67.177571pt;}
.wsce{word-spacing:96.969333pt;}
.wsd0{word-spacing:176.670667pt;}
.ws4e{word-spacing:862.192871pt;}
._23{margin-left:-491.138142pt;}
._14{margin-left:-256.809696pt;}
._38{margin-left:-91.872036pt;}
._e{margin-left:-82.494523pt;}
._1d{margin-left:-67.936666pt;}
._1c{margin-left:-14.557857pt;}
._37{margin-left:-9.342107pt;}
._5{margin-left:-5.671872pt;}
._1{margin-left:-4.463256pt;}
._2{margin-left:-3.188040pt;}
._0{margin-left:-1.912824pt;}
._7{margin-left:-0.908595pt;}
._10{width:1.061569pt;}
._6{width:2.631280pt;}
._28{width:4.698416pt;}
._22{width:6.008980pt;}
._30{width:7.099367pt;}
._3e{width:12.516327pt;}
._2f{width:14.877520pt;}
._12{width:15.780778pt;}
._3a{width:16.792753pt;}
._b{width:17.915083pt;}
._11{width:19.287594pt;}
._a{width:20.239277pt;}
._29{width:21.252559pt;}
._8{width:22.475776pt;}
._c{width:24.282196pt;}
._20{width:25.684736pt;}
._3f{width:26.627922pt;}
._9{width:27.573002pt;}
._13{width:29.914367pt;}
._25{width:31.886401pt;}
._24{width:35.365990pt;}
._26{width:36.768684pt;}
._27{width:38.338652pt;}
._39{width:39.574203pt;}
._f{width:43.994952pt;}
._21{width:44.962572pt;}
._4{width:47.112676pt;}
._3{width:48.238585pt;}
._1a{width:49.284412pt;}
._3d{width:56.696042pt;}
._19{width:58.231428pt;}
._17{width:63.084047pt;}
._16{width:67.936666pt;}
._18{width:72.789285pt;}
._3b{width:76.022771pt;}
._3c{width:77.379829pt;}
._33{width:105.545378pt;}
._32{width:115.662091pt;}
._2e{width:126.288891pt;}
._35{width:136.915691pt;}
._36{width:146.819869pt;}
._1f{width:153.141856pt;}
._1b{width:155.283808pt;}
._2d{width:157.446669pt;}
._15{width:166.010959pt;}
._2b{width:178.700269pt;}
._34{width:226.796565pt;}
._1e{width:235.636354pt;}
._2a{width:256.952662pt;}
._31{width:277.826394pt;}
._d{width:328.897626pt;}
._2c{width:364.711776pt;}
.fse{font-size:27.137376pt;}
.fs11{font-size:30.326400pt;}
.fs6{font-size:31.880533pt;}
.fsc{font-size:32.030080pt;}
.fsf{font-size:33.229440pt;}
.fsa{font-size:34.005867pt;}
.fs10{font-size:35.380800pt;}
.fs13{font-size:35.457920pt;}
.fs8{font-size:37.193600pt;}
.fsb{font-size:37.368427pt;}
.fsd{font-size:38.767680pt;}
.fs5{font-size:38.820952pt;}
.fs12{font-size:41.367573pt;}
.fs2{font-size:42.507200pt;}
.fs9{font-size:43.038400pt;}
.fs7{font-size:47.820267pt;}
.fs4{font-size:47.820800pt;}
.fs3{font-size:53.133867pt;}
.fs1{font-size:58.447467pt;}
.fs0{font-size:127.521600pt;}
.y0{bottom:0.000000pt;}
.y99{bottom:4.872359pt;}
.y1a8{bottom:6.444360pt;}
.y14b{bottom:6.806392pt;}
.y17c{bottom:7.061256pt;}
.y1db{bottom:7.534808pt;}
.y6b{bottom:13.364442pt;}
.y1a7{bottom:17.007266pt;}
.y14a{bottom:17.962702pt;}
.y17b{bottom:19.297218pt;}
.y6c{bottom:19.430216pt;}
.y1da{bottom:19.885060pt;}
.y9e{bottom:24.282835pt;}
.y1a9{bottom:24.500019pt;}
.y6a{bottom:25.495990pt;}
.y14c{bottom:30.387173pt;}
.y17d{bottom:35.156556pt;}
.y1dc{bottom:35.161052pt;}
.y98{bottom:36.414383pt;}
.y14d{bottom:57.805696pt;}
.y1aa{bottom:58.162323pt;}
.y17e{bottom:59.731894pt;}
.y150{bottom:60.449686pt;}
.y1dd{bottom:61.485872pt;}
.y59{bottom:61.836000pt;}
.y69{bottom:61.890632pt;}
.y60{bottom:63.103787pt;}
.y1e2{bottom:65.849697pt;}
.y68{bottom:66.743251pt;}
.y183{bottom:70.591792pt;}
.y1b2{bottom:71.439205pt;}
.y63{bottom:72.809025pt;}
.y58{bottom:73.790667pt;}
.y5f{bottom:74.022180pt;}
.y67{bottom:82.514263pt;}
.y62{bottom:83.727418pt;}
.y17f{bottom:84.307232pt;}
.y97{bottom:84.940573pt;}
.y14e{bottom:85.224219pt;}
.y57{bottom:85.746667pt;}
.y5e{bottom:86.153727pt;}
.y1ae{bottom:87.278629pt;}
.y1de{bottom:87.810691pt;}
.y1ab{bottom:91.824627pt;}
.y65{bottom:93.432656pt;}
.y61{bottom:95.858965pt;}
.y5d{bottom:98.285275pt;}
.y9d{bottom:103.137894pt;}
.y180{bottom:108.882570pt;}
.y14f{bottom:112.642741pt;}
.y96{bottom:112.843132pt;}
.y1df{bottom:114.135510pt;}
.y187{bottom:118.961395pt;}
.y6e{bottom:121.335215pt;}
.y1e6{bottom:123.776766pt;}
.y1ac{bottom:125.486931pt;}
.y56{bottom:126.721333pt;}
.y186{bottom:130.725828pt;}
.y9b{bottom:131.040453pt;}
.y181{bottom:133.457908pt;}
.y66{bottom:135.893072pt;}
.y1e5{bottom:136.330162pt;}
.y153{bottom:137.293935pt;}
.y152{bottom:137.314788pt;}
.y95{bottom:138.319381pt;}
.y1b0{bottom:139.352177pt;}
.y1b1{bottom:139.371921pt;}
.y1e0{bottom:140.460330pt;}
.y5b{bottom:140.745691pt;}
.y6d{bottom:141.958846pt;}
.y185{bottom:142.468628pt;}
.y55{bottom:142.661333pt;}
.y9c{bottom:145.598310pt;}
.y30{bottom:147.442667pt;}
.y151{bottom:148.633751pt;}
.y1e4{bottom:148.860474pt;}
.y1af{bottom:150.088829pt;}
.y184{bottom:154.211427pt;}
.y64{bottom:157.729857pt;}
.y182{bottom:158.033246pt;}
.y93{bottom:158.601333pt;}
.y1ad{bottom:159.149235pt;}
.y11e{bottom:159.685333pt;}
.y54{bottom:160.020000pt;}
.y9a{bottom:160.156167pt;}
.y1e3{bottom:161.390786pt;}
.y20b{bottom:162.857333pt;}
.y2f{bottom:163.384000pt;}
.y94{bottom:166.221941pt;}
.y1e1{bottom:166.785149pt;}
.y5c{bottom:168.648250pt;}
.y1d8{bottom:174.373333pt;}
.y179{bottom:174.445333pt;}
.y92{bottom:174.541333pt;}
.ybf{bottom:175.541333pt;}
.y11d{bottom:175.625333pt;}
.y53{bottom:175.960000pt;}
.y245{bottom:178.000000pt;}
.y2e{bottom:179.324000pt;}
.y20a{bottom:187.865333pt;}
.y244{bottom:189.954667pt;}
.y1d7{bottom:190.314667pt;}
.y178{bottom:190.385333pt;}
.yef{bottom:190.481333pt;}
.ybe{bottom:191.481333pt;}
.y11c{bottom:191.565333pt;}
.y91{bottom:191.692000pt;}
.y52{bottom:191.900000pt;}
.y2d{bottom:195.264000pt;}
.y243{bottom:201.910667pt;}
.y209{bottom:203.805333pt;}
.y1d6{bottom:206.254667pt;}
.y177{bottom:206.325333pt;}
.yee{bottom:206.422667pt;}
.ybd{bottom:207.421333pt;}
.y11b{bottom:207.506667pt;}
.y90{bottom:207.632000pt;}
.y51{bottom:207.840000pt;}
.y2c{bottom:211.204000pt;}
.y242{bottom:213.865333pt;}
.y208{bottom:219.745333pt;}
.y1d5{bottom:222.194667pt;}
.y176{bottom:222.265333pt;}
.yed{bottom:222.362667pt;}
.ybc{bottom:223.362667pt;}
.y11a{bottom:223.446667pt;}
.y8f{bottom:223.572000pt;}
.y50{bottom:223.780000pt;}
.y241{bottom:225.820000pt;}
.y2b{bottom:227.218667pt;}
.y207{bottom:235.685333pt;}
.y240{bottom:237.776000pt;}
.y1d4{bottom:238.134667pt;}
.y175{bottom:238.205333pt;}
.yec{bottom:238.302667pt;}
.ybb{bottom:239.302667pt;}
.y119{bottom:239.386667pt;}
.y8e{bottom:239.512000pt;}
.y4f{bottom:239.720000pt;}
.y2a{bottom:243.158667pt;}
.y23f{bottom:249.730667pt;}
.y206{bottom:251.625333pt;}
.y1d3{bottom:254.074667pt;}
.y174{bottom:254.146667pt;}
.yeb{bottom:254.242667pt;}
.yba{bottom:255.242667pt;}
.y8d{bottom:255.452000pt;}
.y4e{bottom:255.661333pt;}
.y118{bottom:256.410667pt;}
.y148{bottom:258.966667pt;}
.y29{bottom:259.098667pt;}
.y23e{bottom:261.686667pt;}
.y205{bottom:267.566667pt;}
.y1d2{bottom:270.016000pt;}
.y173{bottom:270.086667pt;}
.yea{bottom:270.182667pt;}
.yb9{bottom:271.182667pt;}
.y8c{bottom:271.393333pt;}
.y4d{bottom:271.601333pt;}
.y117{bottom:272.350667pt;}
.y23d{bottom:273.641333pt;}
.y28{bottom:275.040000pt;}
.y204{bottom:283.506667pt;}
.y147{bottom:285.185333pt;}
.y23c{bottom:285.596000pt;}
.y1d1{bottom:285.956000pt;}
.y172{bottom:286.026667pt;}
.ye9{bottom:286.124000pt;}
.yb8{bottom:287.122667pt;}
.y8b{bottom:287.333333pt;}
.y4c{bottom:287.541333pt;}
.y116{bottom:288.290667pt;}
.y1a5{bottom:290.184000pt;}
.y27{bottom:290.980000pt;}
.y23b{bottom:297.552000pt;}
.y203{bottom:299.446667pt;}
.y146{bottom:301.125333pt;}
.y1d0{bottom:301.896000pt;}
.y171{bottom:301.966667pt;}
.ye8{bottom:302.064000pt;}
.yb7{bottom:303.062667pt;}
.y8a{bottom:303.273333pt;}
.y4b{bottom:303.481333pt;}
.y115{bottom:304.232000pt;}
.y26{bottom:306.920000pt;}
.y23a{bottom:309.506667pt;}
.y1a4{bottom:314.352000pt;}
.y202{bottom:315.386667pt;}
.y145{bottom:317.065333pt;}
.y1cf{bottom:317.836000pt;}
.y170{bottom:317.906667pt;}
.ye7{bottom:318.004000pt;}
.yb6{bottom:319.004000pt;}
.y89{bottom:319.213333pt;}
.y4a{bottom:319.421333pt;}
.y114{bottom:320.172000pt;}
.y239{bottom:321.461333pt;}
.y25{bottom:322.860000pt;}
.y1a3{bottom:330.292000pt;}
.y201{bottom:331.338667pt;}
.y144{bottom:333.005333pt;}
.y238{bottom:333.417333pt;}
.y16f{bottom:333.750667pt;}
.y1ce{bottom:333.776000pt;}
.ye6{bottom:334.277333pt;}
.yb5{bottom:334.944000pt;}
.y88{bottom:335.153333pt;}
.y49{bottom:335.361333pt;}
.y113{bottom:336.112000pt;}
.y24{bottom:338.800000pt;}
.y237{bottom:345.372000pt;}
.y1a2{bottom:346.232000pt;}
.y200{bottom:347.278667pt;}
.y143{bottom:348.946667pt;}
.y16e{bottom:349.690667pt;}
.y1cd{bottom:349.716000pt;}
.ye5{bottom:350.217333pt;}
.yb4{bottom:350.884000pt;}
.y87{bottom:351.093333pt;}
.y48{bottom:351.302667pt;}
.y112{bottom:352.052000pt;}
.y23{bottom:354.740000pt;}
.y236{bottom:357.326667pt;}
.y1a1{bottom:362.173333pt;}
.y1ff{bottom:363.220000pt;}
.y142{bottom:364.886667pt;}
.y16d{bottom:365.630667pt;}
.ye4{bottom:366.157333pt;}
.yb3{bottom:366.824000pt;}
.y86{bottom:367.034667pt;}
.y47{bottom:367.242667pt;}
.y111{bottom:367.992000pt;}
.y235{bottom:369.282667pt;}
.y1cc{bottom:369.673333pt;}
.y22{bottom:370.681333pt;}
.y1a0{bottom:378.113333pt;}
.y1fe{bottom:379.160000pt;}
.y141{bottom:380.826667pt;}
.y234{bottom:381.237333pt;}
.y16c{bottom:381.570667pt;}
.ye3{bottom:382.098667pt;}
.yb2{bottom:382.764000pt;}
.y46{bottom:383.182667pt;}
.y110{bottom:383.933333pt;}
.y85{bottom:384.184000pt;}
.y21{bottom:386.621333pt;}
.y233{bottom:393.193333pt;}
.y1cb{bottom:393.573333pt;}
.y19f{bottom:394.053333pt;}
.y1fd{bottom:395.100000pt;}
.y140{bottom:396.766667pt;}
.y16b{bottom:397.510667pt;}
.ye2{bottom:398.038667pt;}
.yb1{bottom:399.704000pt;}
.y10f{bottom:399.873333pt;}
.y84{bottom:400.124000pt;}
.y45{bottom:400.541333pt;}
.y20{bottom:402.561333pt;}
.y232{bottom:405.148000pt;}
.y1ca{bottom:409.513333pt;}
.y19e{bottom:409.993333pt;}
.y1fc{bottom:411.040000pt;}
.y13f{bottom:412.706667pt;}
.y16a{bottom:413.452000pt;}
.ye1{bottom:413.978667pt;}
.yb0{bottom:415.645333pt;}
.y10e{bottom:415.813333pt;}
.y83{bottom:416.064000pt;}
.y44{bottom:416.481333pt;}
.y231{bottom:417.102667pt;}
.y1f{bottom:418.501333pt;}
.y1c9{bottom:425.453333pt;}
.y19d{bottom:425.933333pt;}
.y1fb{bottom:426.980000pt;}
.y13e{bottom:428.646667pt;}
.y230{bottom:429.058667pt;}
.y169{bottom:429.392000pt;}
.yaf{bottom:431.585333pt;}
.y10d{bottom:431.753333pt;}
.y82{bottom:432.005333pt;}
.y43{bottom:432.421333pt;}
.y1e{bottom:434.441333pt;}
.ye0{bottom:435.269333pt;}
.y22f{bottom:441.013333pt;}
.y1c8{bottom:441.393333pt;}
.y19c{bottom:441.873333pt;}
.y1fa{bottom:442.921333pt;}
.y13d{bottom:444.588000pt;}
.y168{bottom:445.332000pt;}
.yae{bottom:447.525333pt;}
.y10c{bottom:447.693333pt;}
.y81{bottom:447.945333pt;}
.y42{bottom:448.361333pt;}
.y22e{bottom:452.968000pt;}
.y1d{bottom:455.012000pt;}
.y1c7{bottom:457.333333pt;}
.y19b{bottom:457.814667pt;}
.y1f9{bottom:458.861333pt;}
.y13c{bottom:460.528000pt;}
.y167{bottom:461.272000pt;}
.ydf{bottom:463.009333pt;}
.yad{bottom:463.465333pt;}
.y80{bottom:463.885333pt;}
.y41{bottom:464.302667pt;}
.y10b{bottom:464.717333pt;}
.y22d{bottom:464.924000pt;}
.y1c6{bottom:473.274667pt;}
.y19a{bottom:473.754667pt;}
.y1f8{bottom:474.801333pt;}
.y13b{bottom:476.468000pt;}
.y22c{bottom:476.878667pt;}
.y166{bottom:477.116000pt;}
.yde{bottom:478.950667pt;}
.yac{bottom:479.405333pt;}
.y7f{bottom:479.825333pt;}
.y40{bottom:480.242667pt;}
.y10a{bottom:480.658667pt;}
.y1c{bottom:484.242667pt;}
.y22b{bottom:488.834667pt;}
.y1c5{bottom:489.214667pt;}
.y199{bottom:489.694667pt;}
.y1f7{bottom:490.741333pt;}
.y13a{bottom:492.408000pt;}
.y165{bottom:493.056000pt;}
.ydd{bottom:494.890667pt;}
.yab{bottom:495.345333pt;}
.y7e{bottom:495.765333pt;}
.y3f{bottom:496.182667pt;}
.y109{bottom:496.598667pt;}
.y1b{bottom:497.526667pt;}
.y22a{bottom:500.789333pt;}
.y1c4{bottom:505.154667pt;}
.y198{bottom:505.512000pt;}
.y1f6{bottom:506.681333pt;}
.y139{bottom:508.348000pt;}
.y164{bottom:508.996000pt;}
.ydc{bottom:510.830667pt;}
.y1a{bottom:510.884000pt;}
.yaa{bottom:511.286667pt;}
.y3e{bottom:512.122667pt;}
.y108{bottom:512.538667pt;}
.y229{bottom:512.744000pt;}
.y7d{bottom:512.916000pt;}
.y1c3{bottom:521.094667pt;}
.y197{bottom:521.452000pt;}
.y1f5{bottom:522.621333pt;}
.y19{bottom:524.168000pt;}
.y138{bottom:524.288000pt;}
.y228{bottom:524.700000pt;}
.y163{bottom:524.936000pt;}
.ydb{bottom:526.770667pt;}
.ya9{bottom:527.226667pt;}
.y3d{bottom:528.062667pt;}
.y107{bottom:528.478667pt;}
.y7c{bottom:528.856000pt;}
.y227{bottom:536.654667pt;}
.y1c2{bottom:537.034667pt;}
.y196{bottom:537.392000pt;}
.y18{bottom:537.452000pt;}
.y1f4{bottom:538.562667pt;}
.y137{bottom:540.229333pt;}
.y162{bottom:540.876000pt;}
.yda{bottom:542.710667pt;}
.ya8{bottom:543.166667pt;}
.y3c{bottom:544.002667pt;}
.y106{bottom:544.418667pt;}
.y7b{bottom:544.796000pt;}
.y226{bottom:548.609333pt;}
.y17{bottom:550.734667pt;}
.y1c1{bottom:552.976000pt;}
.y195{bottom:553.332000pt;}
.y1f3{bottom:554.502667pt;}
.yd9{bottom:558.650667pt;}
.ya7{bottom:559.106667pt;}
.y3b{bottom:559.944000pt;}
.y105{bottom:560.358667pt;}
.y225{bottom:560.565333pt;}
.y7a{bottom:560.736000pt;}
.y136{bottom:560.893333pt;}
.y161{bottom:560.904000pt;}
.y16{bottom:564.018667pt;}
.y1c0{bottom:568.916000pt;}
.y194{bottom:569.272000pt;}
.y1f2{bottom:570.442667pt;}
.y224{bottom:572.520000pt;}
.yd8{bottom:574.592000pt;}
.ya6{bottom:575.046667pt;}
.y3a{bottom:575.884000pt;}
.y104{bottom:576.300000pt;}
.y79{bottom:576.676000pt;}
.y15{bottom:577.302667pt;}
.y223{bottom:584.476000pt;}
.y1bf{bottom:584.856000pt;}
.y193{bottom:585.213333pt;}
.y160{bottom:585.229333pt;}
.y135{bottom:587.110667pt;}
.yd7{bottom:590.532000pt;}
.y14{bottom:590.585333pt;}
.y1f1{bottom:590.638667pt;}
.ya5{bottom:590.986667pt;}
.y78{bottom:592.617333pt;}
.y39{bottom:593.242667pt;}
.y222{bottom:596.430667pt;}
.y103{bottom:600.217333pt;}
.y1be{bottom:600.628000pt;}
.y192{bottom:601.153333pt;}
.y15f{bottom:601.169333pt;}
.y134{bottom:603.052000pt;}
.y13{bottom:603.869333pt;}
.yd6{bottom:606.472000pt;}
.ya4{bottom:606.928000pt;}
.y221{bottom:608.385333pt;}
.y77{bottom:608.557333pt;}
.y38{bottom:609.182667pt;}
.y1f0{bottom:615.646667pt;}
.y1bd{bottom:616.568000pt;}
.y191{bottom:617.093333pt;}
.y12{bottom:617.153333pt;}
.y133{bottom:618.992000pt;}
.y220{bottom:620.341333pt;}
.y15e{bottom:621.197333pt;}
.yd5{bottom:622.412000pt;}
.ya3{bottom:622.868000pt;}
.y37{bottom:625.122667pt;}
.y11{bottom:630.436000pt;}
.y1ef{bottom:631.586667pt;}
.y21f{bottom:632.296000pt;}
.y1bc{bottom:632.509333pt;}
.y190{bottom:633.033333pt;}
.y76{bottom:635.940000pt;}
.ya2{bottom:638.808000pt;}
.y132{bottom:640.041333pt;}
.y36{bottom:641.062667pt;}
.y10{bottom:643.720000pt;}
.y21e{bottom:644.250667pt;}
.yd4{bottom:644.537333pt;}
.y15d{bottom:645.521333pt;}
.y1ee{bottom:647.526667pt;}
.y1bb{bottom:648.449333pt;}
.y18f{bottom:648.973333pt;}
.ya1{bottom:654.748000pt;}
.y21d{bottom:656.206667pt;}
.y35{bottom:657.002667pt;}
.yf{bottom:657.004000pt;}
.y15c{bottom:661.462667pt;}
.y1ed{bottom:663.466667pt;}
.y1ba{bottom:664.389333pt;}
.y131{bottom:666.260000pt;}
.y102{bottom:666.869333pt;}
.y21c{bottom:668.161333pt;}
.y18e{bottom:668.974667pt;}
.ye{bottom:670.286667pt;}
.y75{bottom:671.128000pt;}
.ya0{bottom:671.688000pt;}
.yd3{bottom:672.277333pt;}
.y34{bottom:672.942667pt;}
.y15b{bottom:677.402667pt;}
.y1ec{bottom:679.406667pt;}
.y21b{bottom:680.117333pt;}
.y1b9{bottom:680.329333pt;}
.y130{bottom:682.200000pt;}
.y101{bottom:682.809333pt;}
.yd{bottom:683.570667pt;}
.y74{bottom:687.068000pt;}
.y9f{bottom:687.628000pt;}
.yd2{bottom:688.217333pt;}
.y33{bottom:688.884000pt;}
.y21a{bottom:692.072000pt;}
.y18d{bottom:693.142667pt;}
.y15a{bottom:693.342667pt;}
.y1eb{bottom:695.348000pt;}
.y1b8{bottom:696.269333pt;}
.yc{bottom:696.853333pt;}
.y12f{bottom:698.140000pt;}
.y100{bottom:698.749333pt;}
.y219{bottom:704.026667pt;}
.yd1{bottom:704.157333pt;}
.y32{bottom:704.824000pt;}
.y18c{bottom:709.082667pt;}
.y159{bottom:709.282667pt;}
.yb{bottom:710.137333pt;}
.y1ea{bottom:711.288000pt;}
.y1b7{bottom:712.209333pt;}
.y12e{bottom:714.080000pt;}
.yff{bottom:714.690667pt;}
.y218{bottom:715.982667pt;}
.yd0{bottom:720.097333pt;}
.y31{bottom:720.764000pt;}
.ya{bottom:723.421333pt;}
.y18b{bottom:725.022667pt;}
.y158{bottom:725.222667pt;}
.y1e9{bottom:727.228000pt;}
.y217{bottom:727.937333pt;}
.y1b6{bottom:728.150667pt;}
.y12d{bottom:730.021333pt;}
.yfe{bottom:732.054667pt;}
.y73{bottom:733.242667pt;}
.ycf{bottom:736.037333pt;}
.y9{bottom:736.704000pt;}
.y216{bottom:739.892000pt;}
.y72{bottom:745.197333pt;}
.y12c{bottom:745.961333pt;}
.yfd{bottom:749.418667pt;}
.y215{bottom:751.848000pt;}
.yce{bottom:751.978667pt;}
.y71{bottom:757.153333pt;}
.y12b{bottom:761.901333pt;}
.y214{bottom:763.802667pt;}
.y157{bottom:764.942667pt;}
.y18a{bottom:766.657333pt;}
.ycd{bottom:768.252000pt;}
.y70{bottom:769.108000pt;}
.y1b5{bottom:769.308000pt;}
.y1e8{bottom:770.208000pt;}
.yfc{bottom:772.097333pt;}
.y213{bottom:775.757333pt;}
.y156{bottom:776.898667pt;}
.y189{bottom:778.613333pt;}
.y6f{bottom:781.062667pt;}
.y1b4{bottom:781.264000pt;}
.y1e7{bottom:782.162667pt;}
.ycc{bottom:784.192000pt;}
.y212{bottom:787.713333pt;}
.y155{bottom:788.853333pt;}
.yfb{bottom:789.461333pt;}
.y188{bottom:790.568000pt;}
.y8{bottom:790.757333pt;}
.y1b3{bottom:793.218667pt;}
.y211{bottom:799.668000pt;}
.ycb{bottom:800.132000pt;}
.y154{bottom:800.808000pt;}
.y5a{bottom:804.973341pt;}
.y1d9{bottom:806.073333pt;}
.yfa{bottom:806.826667pt;}
.y12a{bottom:810.001333pt;}
.y210{bottom:811.624000pt;}
.y7{bottom:812.016000pt;}
.y17a{bottom:814.478667pt;}
.yca{bottom:816.072000pt;}
.y1a6{bottom:817.129333pt;}
.y129{bottom:821.956000pt;}
.y20f{bottom:823.578667pt;}
.yf9{bottom:824.190667pt;}
.y149{bottom:824.718667pt;}
.y6{bottom:828.453333pt;}
.yc9{bottom:832.012000pt;}
.y128{bottom:833.910667pt;}
.y20e{bottom:835.533333pt;}
.yf8{bottom:840.130667pt;}
.y5{bottom:844.892000pt;}
.y127{bottom:845.866667pt;}
.yc8{bottom:847.953333pt;}
.y20d{bottom:855.260000pt;}
.y126{bottom:857.821333pt;}
.yf7{bottom:862.049333pt;}
.y4{bottom:863.373333pt;}
.yc7{bottom:863.893333pt;}
.y125{bottom:869.776000pt;}
.yf6{bottom:877.989333pt;}
.yc6{bottom:880.166667pt;}
.y3{bottom:880.469333pt;}
.y124{bottom:881.732000pt;}
.y123{bottom:893.686667pt;}
.yf5{bottom:893.929333pt;}
.yc5{bottom:896.106667pt;}
.y122{bottom:905.641333pt;}
.yf4{bottom:909.869333pt;}
.yc4{bottom:912.046667pt;}
.y121{bottom:917.597333pt;}
.y2{bottom:922.313333pt;}
.yf3{bottom:925.809333pt;}
.yc3{bottom:927.986667pt;}
.y120{bottom:936.493333pt;}
.yf2{bottom:941.749333pt;}
.y20c{bottom:943.926667pt;}
.yc2{bottom:943.928000pt;}
.yf1{bottom:957.690667pt;}
.y1{bottom:959.506667pt;}
.yc1{bottom:959.868000pt;}
.y11f{bottom:963.853333pt;}
.yf0{bottom:975.806667pt;}
.yc0{bottom:975.808000pt;}
.he{height:26.291338pt;}
.hd{height:26.954782pt;}
.h1f{height:27.051149pt;}
.h18{height:28.570831pt;}
.ha{height:29.244954pt;}
.h15{height:29.499997pt;}
.h1c{height:29.640660pt;}
.h23{height:29.671620pt;}
.h3{height:29.925069pt;}
.h1e{height:31.559674pt;}
.h22{height:31.628465pt;}
.hc{height:31.807401pt;}
.hf{height:32.823885pt;}
.h6{height:33.187635pt;}
.h17{height:33.332637pt;}
.h5{height:33.426739pt;}
.h1b{height:34.580771pt;}
.h7{height:35.865600pt;}
.h10{height:36.290431pt;}
.h8{height:36.556100pt;}
.h14{height:36.582504pt;}
.h21{height:36.899875pt;}
.h9{height:39.850400pt;}
.h13{height:43.976550pt;}
.h1a{height:47.510761pt;}
.h4{height:49.205069pt;}
.h2{height:51.039735pt;}
.h11{height:53.279733pt;}
.h12{height:53.285067pt;}
.h1{height:87.734861pt;}
.h16{height:162.246535pt;}
.h1d{height:169.838502pt;}
.h19{height:172.487619pt;}
.h20{height:180.892642pt;}
.hb{height:181.992952pt;}
.h0{height:1056.000000pt;}
.w1{width:304.939298pt;}
.w3{width:315.088992pt;}
.w4{width:338.804724pt;}
.w5{width:338.805412pt;}
.w2{width:338.808181pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x27{left:2.434208pt;}
.x28{left:3.514674pt;}
.x26{left:4.727829pt;}
.x47{left:11.289769pt;}
.x58{left:12.497993pt;}
.x46{left:15.960822pt;}
.x11{left:16.859377pt;}
.x4f{left:19.534466pt;}
.x45{left:20.631876pt;}
.x57{left:22.839887pt;}
.x56{left:28.010833pt;}
.x16{left:33.635032pt;}
.x15{left:36.611052pt;}
.x4d{left:38.988163pt;}
.x43{left:41.457987pt;}
.x21{left:42.525182pt;}
.x54{left:49.127490pt;}
.x2b{left:53.254019pt;}
.x48{left:59.601806pt;}
.x9{left:61.228000pt;}
.xd{left:63.581333pt;}
.xe{left:66.441333pt;}
.x59{left:71.151303pt;}
.x4b{left:73.088000pt;}
.x8{left:74.512000pt;}
.x10{left:78.169333pt;}
.x50{left:82.527888pt;}
.x2a{left:84.037821pt;}
.x29{left:84.928731pt;}
.x41{left:86.140000pt;}
.x1{left:88.065333pt;}
.x42{left:93.933333pt;}
.x1d{left:95.714435pt;}
.x5a{left:99.616000pt;}
.x1c{left:100.832432pt;}
.x2c{left:101.912898pt;}
.x35{left:115.064000pt;}
.x24{left:116.525333pt;}
.x17{left:131.293989pt;}
.x18{left:133.037899pt;}
.x2d{left:145.586469pt;}
.x4c{left:146.651903pt;}
.x4e{left:151.011059pt;}
.x40{left:155.201333pt;}
.x1e{left:158.457282pt;}
.x2{left:160.226667pt;}
.x44{left:162.918833pt;}
.x55{left:164.422207pt;}
.x2e{left:167.423254pt;}
.x2f{left:171.384963pt;}
.x5b{left:172.700000pt;}
.x3{left:176.485333pt;}
.xa{left:178.797333pt;}
.x31{left:184.274732pt;}
.x5{left:188.358667pt;}
.x1b{left:189.582284pt;}
.x1a{left:204.140147pt;}
.x22{left:206.244206pt;}
.x19{left:208.992766pt;}
.x30{left:211.096825pt;}
.x33{left:215.949444pt;}
.x36{left:220.436000pt;}
.x6{left:224.697333pt;}
.x51{left:226.053104pt;}
.x1f{left:227.474414pt;}
.x20{left:228.554886pt;}
.x32{left:232.933611pt;}
.x23{left:234.146765pt;}
.x12{left:244.060520pt;}
.x13{left:245.387408pt;}
.x14{left:250.789732pt;}
.x34{left:257.518956pt;}
.xf{left:263.088000pt;}
.x7{left:273.554667pt;}
.x4{left:276.420000pt;}
.x49{left:283.641790pt;}
.x52{left:314.837786pt;}
.x53{left:332.350492pt;}
.x37{left:363.690667pt;}
.x3f{left:413.845333pt;}
.xb{left:415.970667pt;}
.x3a{left:417.962667pt;}
.x5d{left:421.284000pt;}
.x38{left:422.612000pt;}
.xc{left:429.253333pt;}
.x25{left:432.910667pt;}
.x5e{left:440.316000pt;}
.x3b{left:442.018667pt;}
.x3c{left:449.710667pt;}
.x3e{left:460.658667pt;}
.x39{left:479.664000pt;}
.x4a{left:511.634667pt;}
.x3d{left:519.162667pt;}
.x5f{left:543.440000pt;}
.x5c{left:548.177333pt;}
}




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