
    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_eec1648480820dd24617eb57.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.005000;font-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_f8c7337f10cd528dba83a2cd.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.005000;font-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_e7c2194ca8b26d34bf1654a7.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.005000;font-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_992c21fdb9f63e3a6291d0c7.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.922000;font-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_531cd3b70765f1aec5b2f84c.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.940000;font-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_365d82283d05d7a8571ae4c2.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.943000;font-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_0c7c2138837aba2f640700b6.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.993000;font-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_346a9af47688a5efe664964e.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.995000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m2{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);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2{vertical-align:-6.840000px;}
.v1{vertical-align:-5.238000px;}
.v6{vertical-align:-1.014000px;}
.v0{vertical-align:0.000000px;}
.v5{vertical-align:1.278000px;}
.v4{vertical-align:5.562000px;}
.v3{vertical-align:6.840000px;}
.ls0{letter-spacing:0.000000px;}
.ls1{letter-spacing:32.727300px;}
.ls10{letter-spacing:71.726698px;}
.ls3{letter-spacing:71.732698px;}
.ls6{letter-spacing:1333.298698px;}
.lsc{letter-spacing:1334.606698px;}
.lsa{letter-spacing:1337.486698px;}
.ls8{letter-spacing:1337.882698px;}
.lsf{letter-spacing:1338.014698px;}
.lse{letter-spacing:1338.272698px;}
.ls11{letter-spacing:1338.338698px;}
.lsb{letter-spacing:1338.794698px;}
.lsd{letter-spacing:1339.190698px;}
.ls9{letter-spacing:1339.256698px;}
.ls12{letter-spacing:1339.388698px;}
.ls5{letter-spacing:1361.966698px;}
.ls4{letter-spacing:1361.972698px;}
.ls7{letter-spacing:1368.188698px;}
.ls2{letter-spacing:1474.808698px;}
.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;}
}
.ws1{word-spacing:-427.176183px;}
.wsf{word-spacing:-74.361300px;}
.ws3{word-spacing:-63.888322px;}
.ws4{word-spacing:-47.820600px;}
.wse{word-spacing:-37.180650px;}
.ws13b{word-spacing:-35.865600px;}
.wsb{word-spacing:-32.727300px;}
.ws55{word-spacing:-27.098204px;}
.ws40{word-spacing:-26.443658px;}
.ws64{word-spacing:-25.330930px;}
.ws47{word-spacing:-25.265476px;}
.ws58{word-spacing:-24.938203px;}
.ws52{word-spacing:-24.283657px;}
.ws5f{word-spacing:-23.301838px;}
.ws29{word-spacing:-22.778201px;}
.ws2{word-spacing:-22.416000px;}
.ws12{word-spacing:-21.796382px;}
.ws14{word-spacing:-21.730927px;}
.ws15{word-spacing:-21.665473px;}
.ws82{word-spacing:-21.605377px;}
.ws44{word-spacing:-21.076381px;}
.ws3c{word-spacing:-20.487290px;}
.ws14c{word-spacing:-20.013005px;}
.ws14b{word-spacing:-19.982218px;}
.ws4d{word-spacing:-19.963653px;}
.ws4e{word-spacing:-19.642050px;}
.ws7{word-spacing:-19.309107px;}
.ws1f{word-spacing:-19.047289px;}
.ws10{word-spacing:-18.981834px;}
.ws5d{word-spacing:-18.065470px;}
.wse6{word-spacing:-18.006259px;}
.ws111{word-spacing:-18.006202px;}
.wse9{word-spacing:-18.006163px;}
.wseb{word-spacing:-18.005894px;}
.ws65{word-spacing:-18.005722px;}
.wse3{word-spacing:-18.005530px;}
.ws12a{word-spacing:-18.005098px;}
.ws14f{word-spacing:-18.005011px;}
.ws114{word-spacing:-18.004925px;}
.wse4{word-spacing:-18.004906px;}
.ws153{word-spacing:-18.004838px;}
.ws12d{word-spacing:-18.004646px;}
.ws66{word-spacing:-18.004531px;}
.wse8{word-spacing:-18.004464px;}
.ws118{word-spacing:-18.004147px;}
.ws115{word-spacing:-18.003869px;}
.ws14d{word-spacing:-18.003850px;}
.ws127{word-spacing:-18.003802px;}
.wse7{word-spacing:-18.003658px;}
.wsf9{word-spacing:-18.003600px;}
.ws10e{word-spacing:-18.003437px;}
.wsa0{word-spacing:-18.003341px;}
.wsc1{word-spacing:-18.002870px;}
.ws123{word-spacing:-18.002746px;}
.wse5{word-spacing:-18.002669px;}
.ws152{word-spacing:-18.002602px;}
.ws150{word-spacing:-18.002496px;}
.ws131{word-spacing:-18.002448px;}
.wsea{word-spacing:-18.002045px;}
.ws97{word-spacing:-18.001901px;}
.wse1{word-spacing:-18.001862px;}
.ws12f{word-spacing:-18.001469px;}
.ws151{word-spacing:-18.001440px;}
.ws110{word-spacing:-18.001258px;}
.ws116{word-spacing:-17.934720px;}
.ws12b{word-spacing:-17.933981px;}
.ws87{word-spacing:-17.933923px;}
.ws83{word-spacing:-17.933712px;}
.wsdd{word-spacing:-17.933683px;}
.wsdf{word-spacing:-17.933155px;}
.wsd5{word-spacing:-17.932973px;}
.ws84{word-spacing:-17.932800px;}
.ws10f{word-spacing:-17.932397px;}
.wsec{word-spacing:-17.932022px;}
.wse2{word-spacing:-17.931734px;}
.ws13a{word-spacing:-17.931379px;}
.ws130{word-spacing:-17.931341px;}
.ws135{word-spacing:-17.931274px;}
.ws112{word-spacing:-17.931130px;}
.ws132{word-spacing:-17.930976px;}
.ws12c{word-spacing:-17.930813px;}
.ws9e{word-spacing:-17.930304px;}
.ws138{word-spacing:-17.930218px;}
.ws73{word-spacing:-17.930170px;}
.ws113{word-spacing:-17.930074px;}
.wsbe{word-spacing:-17.929987px;}
.wsf8{word-spacing:-17.929805px;}
.ws9c{word-spacing:-17.929536px;}
.wsfa{word-spacing:-17.929248px;}
.ws9f{word-spacing:-17.928960px;}
.ws62{word-spacing:-17.476378px;}
.ws1d{word-spacing:-17.149105px;}
.wsd{word-spacing:-17.083651px;}
.ws9{word-spacing:-17.018196px;}
.ws5{word-spacing:-16.504103px;}
.ws8{word-spacing:-16.429105px;}
.wsa{word-spacing:-16.363650px;}
.ws41{word-spacing:-15.643649px;}
.ws48{word-spacing:-15.316376px;}
.ws53{word-spacing:-15.185467px;}
.ws3d{word-spacing:-15.054558px;}
.ws6{word-spacing:-14.923649px;}
.wsc{word-spacing:-11.781828px;}
.ws1e{word-spacing:-8.770916px;}
.ws31{word-spacing:-8.719368px;}
.ws32{word-spacing:-8.718318px;}
.ws2f{word-spacing:-8.717568px;}
.ws42{word-spacing:-8.717268px;}
.ws2e{word-spacing:-8.716518px;}
.ws3e{word-spacing:-8.715468px;}
.ws37{word-spacing:-8.714718px;}
.ws45{word-spacing:-8.714418px;}
.ws30{word-spacing:-8.713668px;}
.ws25{word-spacing:-8.711868px;}
.ws23{word-spacing:-8.710068px;}
.ws24{word-spacing:-8.709768px;}
.ws36{word-spacing:-8.709018px;}
.ws33{word-spacing:-8.705418px;}
.ws46{word-spacing:-8.705118px;}
.ws3b{word-spacing:-8.704368px;}
.ws43{word-spacing:-8.703318px;}
.ws2a{word-spacing:-8.702568px;}
.ws2c{word-spacing:-8.700468px;}
.ws3a{word-spacing:-8.697618px;}
.ws60{word-spacing:-8.320504px;}
.ws59{word-spacing:-7.336585px;}
.ws5a{word-spacing:-5.317068px;}
.ws50{word-spacing:-5.311368px;}
.ws49{word-spacing:-5.309268px;}
.ws27{word-spacing:-5.307468px;}
.ws5b{word-spacing:-5.306418px;}
.ws39{word-spacing:-5.304918px;}
.ws38{word-spacing:-5.303868px;}
.ws26{word-spacing:-5.302818px;}
.ws4a{word-spacing:-5.302068px;}
.ws28{word-spacing:-5.301823px;}
.ws51{word-spacing:-5.297118px;}
.ws5c{word-spacing:-5.295318px;}
.ws54{word-spacing:-5.293518px;}
.ws3f{word-spacing:-3.924168px;}
.ws2d{word-spacing:-3.918468px;}
.ws18{word-spacing:-2.618184px;}
.ws22{word-spacing:-2.563368px;}
.ws34{word-spacing:-2.559468px;}
.ws20{word-spacing:-2.553018px;}
.ws1a{word-spacing:-2.552729px;}
.ws35{word-spacing:-2.551968px;}
.ws56{word-spacing:-1.906518px;}
.ws57{word-spacing:-1.893318px;}
.ws61{word-spacing:-0.538968px;}
.ws63{word-spacing:-0.533268px;}
.ws5e{word-spacing:-0.522168px;}
.ws0{word-spacing:0.000000px;}
.ws1b{word-spacing:0.785455px;}
.ws4f{word-spacing:0.832932px;}
.ws4b{word-spacing:0.840732px;}
.ws4c{word-spacing:0.855732px;}
.ws1c{word-spacing:2.160002px;}
.ws19{word-spacing:3.534548px;}
.ws13{word-spacing:23.956384px;}
.ws17{word-spacing:24.021838px;}
.ws16{word-spacing:28.734569px;}
.ws11{word-spacing:29.520025px;}
.ws21{word-spacing:29.585479px;}
.ws71{word-spacing:38.937210px;}
.wsa9{word-spacing:38.937736px;}
.wsb9{word-spacing:38.938279px;}
.wsb3{word-spacing:38.938828px;}
.wsaf{word-spacing:38.939920px;}
.ws81{word-spacing:38.943210px;}
.wsd4{word-spacing:38.999389px;}
.wsad{word-spacing:39.001010px;}
.wsab{word-spacing:39.001558px;}
.wsb5{word-spacing:39.002096px;}
.wsb1{word-spacing:39.002101px;}
.ws95{word-spacing:39.002123px;}
.wsbd{word-spacing:39.002665px;}
.wse0{word-spacing:39.003191px;}
.ws72{word-spacing:39.005389px;}
.ws7b{word-spacing:39.008123px;}
.ws2b{word-spacing:56.691227px;}
.ws9b{word-spacing:516.033144px;}
.ws137{word-spacing:957.787298px;}
.ws13e{word-spacing:962.497298px;}
.ws148{word-spacing:962.761298px;}
.ws149{word-spacing:962.827298px;}
.ws143{word-spacing:963.025298px;}
.ws140{word-spacing:963.679298px;}
.ws13d{word-spacing:963.871298px;}
.wsde{word-spacing:964.069903px;}
.ws142{word-spacing:965.773298px;}
.ws139{word-spacing:992.671298px;}
.ws14a{word-spacing:995.419901px;}
.ws136{word-spacing:1026.121901px;}
.ws13f{word-spacing:1027.429901px;}
.ws146{word-spacing:1028.083901px;}
.ws13c{word-spacing:1029.391901px;}
.ws141{word-spacing:1029.853901px;}
.ws14e{word-spacing:1030.177901px;}
.ws145{word-spacing:1030.699901px;}
.ws147{word-spacing:1031.029901px;}
.ws144{word-spacing:1031.161901px;}
.wsf5{word-spacing:1050.995707px;}
.ws9a{word-spacing:1072.135448px;}
.ws126{word-spacing:1075.212842px;}
.ws86{word-spacing:1088.955098px;}
.ws98{word-spacing:1092.426840px;}
.wsf7{word-spacing:1097.857410px;}
.wsae{word-spacing:1098.192295px;}
.wsa1{word-spacing:1109.908173px;}
.wsa3{word-spacing:1123.588680px;}
.ws125{word-spacing:1127.118916px;}
.wsb2{word-spacing:1136.286872px;}
.wsb6{word-spacing:1137.661419px;}
.ws99{word-spacing:1139.031119px;}
.ws85{word-spacing:1140.600959px;}
.wsac{word-spacing:1151.603249px;}
.ws124{word-spacing:1153.363478px;}
.wsa7{word-spacing:1155.329276px;}
.wsa4{word-spacing:1165.414169px;}
.wsbc{word-spacing:1169.014172px;}
.wsb8{word-spacing:1170.323264px;}
.wsa8{word-spacing:1171.043265px;}
.wsb4{word-spacing:1176.541451px;}
.ws117{word-spacing:1177.847325px;}
.wsb7{word-spacing:1178.243271px;}
.wsba{word-spacing:1193.886920px;}
.wsed{word-spacing:1195.385856px;}
.wsaa{word-spacing:1201.872382px;}
.wsb0{word-spacing:1203.639656px;}
.wsa2{word-spacing:1206.061476px;}
.wsf1{word-spacing:1216.206419px;}
.wsa5{word-spacing:1219.937851px;}
.ws133{word-spacing:1221.303725px;}
.wsa6{word-spacing:1222.883308px;}
.wsf4{word-spacing:1230.275856px;}
.wsc0{word-spacing:1232.434821px;}
.ws134{word-spacing:1235.770821px;}
.wsf0{word-spacing:1238.129888px;}
.wsbb{word-spacing:1241.341505px;}
.ws9d{word-spacing:1241.595115px;}
.wsbf{word-spacing:1252.263725px;}
.wsee{word-spacing:1256.847725px;}
.wsef{word-spacing:1262.476821px;}
.wsf2{word-spacing:1263.854066px;}
.wsf3{word-spacing:1269.548616px;}
.wsf6{word-spacing:1273.148619px;}
.ws68{word-spacing:1337.355683px;}
.ws6a{word-spacing:1337.356773px;}
.ws6c{word-spacing:1337.357318px;}
.ws6b{word-spacing:1337.418410px;}
.ws6f{word-spacing:1337.418955px;}
.ws70{word-spacing:1337.419493px;}
.ws69{word-spacing:1337.419501px;}
.ws6e{word-spacing:1337.420045px;}
.ws67{word-spacing:1342.066230px;}
.ws6d{word-spacing:1348.545137px;}
.wsd3{word-spacing:1361.633315px;}
.wsc2{word-spacing:1367.464769px;}
.wscb{word-spacing:1370.929493px;}
.wsce{word-spacing:1371.131318px;}
.ws93{word-spacing:1381.535861px;}
.ws129{word-spacing:1381.927493px;}
.ws128{word-spacing:1382.778410px;}
.ws94{word-spacing:1384.942769px;}
.wsc7{word-spacing:1396.462769px;}
.wsc9{word-spacing:1396.524408px;}
.wscc{word-spacing:1396.525493px;}
.wscd{word-spacing:1397.769676px;}
.wsc4{word-spacing:1397.770769px;}
.wsc5{word-spacing:1400.650769px;}
.wsd1{word-spacing:1401.498955px;}
.wscf{word-spacing:1401.957137px;}
.wsca{word-spacing:1402.348769px;}
.wsd0{word-spacing:1402.478045px;}
.wsc8{word-spacing:1402.546769px;}
.ws91{word-spacing:1403.854769px;}
.ws8e{word-spacing:1403.855861px;}
.ws8f{word-spacing:1403.916408px;}
.ws104{word-spacing:1404.507682px;}
.ws103{word-spacing:1404.508769px;}
.ws109{word-spacing:1404.509318px;}
.ws8c{word-spacing:1405.103861px;}
.ws92{word-spacing:1405.823864px;}
.ws11f{word-spacing:1407.129734px;}
.wsd8{word-spacing:1407.131318px;}
.wsd7{word-spacing:1407.192410px;}
.ws11c{word-spacing:1407.194096px;}
.ws108{word-spacing:1407.846410px;}
.ws90{word-spacing:1407.917861px;}
.ws8d{word-spacing:1408.043861px;}
.wsfb{word-spacing:1408.702769px;}
.wsff{word-spacing:1408.702776px;}
.ws101{word-spacing:1408.764408px;}
.ws100{word-spacing:1409.154411px;}
.ws102{word-spacing:1409.156046px;}
.ws107{word-spacing:1409.224769px;}
.ws105{word-spacing:1409.482769px;}
.ws10b{word-spacing:1410.660955px;}
.ws11e{word-spacing:1411.904096px;}
.ws11d{word-spacing:1412.040464px;}
.wsda{word-spacing:1412.168045px;}
.ws10a{word-spacing:1412.493137px;}
.wsd6{word-spacing:1415.116773px;}
.wsc3{word-spacing:1431.346769px;}
.wsd2{word-spacing:1431.409493px;}
.wsc6{word-spacing:1431.409501px;}
.ws12e{word-spacing:1435.862096px;}
.ws8b{word-spacing:1438.744229px;}
.ws89{word-spacing:1438.744769px;}
.ws8a{word-spacing:1438.745861px;}
.ws88{word-spacing:1438.805861px;}
.ws96{word-spacing:1438.807493px;}
.ws106{word-spacing:1439.399316px;}
.ws10d{word-spacing:1439.399860px;}
.wsfe{word-spacing:1439.459865px;}
.wsfd{word-spacing:1439.460956px;}
.ws10c{word-spacing:1439.461493px;}
.wsfc{word-spacing:1439.462046px;}
.wsd9{word-spacing:1442.013137px;}
.ws119{word-spacing:1442.013736px;}
.ws120{word-spacing:1442.014279px;}
.ws11b{word-spacing:1442.015373px;}
.ws80{word-spacing:1442.016324px;}
.ws79{word-spacing:1442.017010px;}
.ws7f{word-spacing:1442.017411px;}
.ws76{word-spacing:1442.018646px;}
.ws122{word-spacing:1442.076464px;}
.wsdb{word-spacing:1442.076955px;}
.wsdc{word-spacing:1442.077493px;}
.ws11a{word-spacing:1442.077558px;}
.ws121{word-spacing:1442.078096px;}
.ws7e{word-spacing:1442.079050px;}
.ws7a{word-spacing:1442.079188px;}
.ws7c{word-spacing:1442.080682px;}
.ws7d{word-spacing:1442.080684px;}
.ws77{word-spacing:1442.080828px;}
.ws75{word-spacing:1442.081374px;}
.ws74{word-spacing:1442.081398px;}
.ws78{word-spacing:1442.084096px;}
._13{margin-left:-32.792755px;}
._20{margin-left:-31.740418px;}
._0{margin-left:-28.674477px;}
._4{margin-left:-8.607708px;}
._bd{margin-left:-7.567620px;}
._e{margin-left:-6.021823px;}
._1{margin-left:-4.214208px;}
._b{margin-left:-3.076366px;}
._2{margin-left:-1.793280px;}
._c{width:1.009626px;}
._5{width:2.367127px;}
._9{width:3.619153px;}
._d{width:5.026561px;}
._f{width:10.363774px;}
._8{width:11.807834px;}
._3{width:13.778328px;}
._a{width:15.054558px;}
._6{width:16.480224px;}
._27{width:17.529833px;}
._7{width:18.837482px;}
._26{width:20.479190px;}
._1c{width:22.377373px;}
._1d{width:24.102349px;}
._3c{width:25.278011px;}
._21{width:27.148809px;}
._29{width:28.460601px;}
._12{width:29.734294px;}
._39{width:31.232580px;}
._28{width:32.342878px;}
._38{width:34.557452px;}
._1b{width:36.447262px;}
._3a{width:37.802996px;}
._2d{width:38.830796px;}
._1e{width:40.173524px;}
._33{width:41.358728px;}
._1f{width:42.592495px;}
._1a{width:44.323470px;}
._18{width:46.031440px;}
._2e{width:48.012533px;}
._25{width:49.664141px;}
._30{width:52.354051px;}
._23{width:53.398804px;}
._15{width:55.362592px;}
._2c{width:56.914359px;}
._2b{width:58.162946px;}
._32{width:59.186014px;}
._19{width:60.558461px;}
._16{width:62.312779px;}
._24{width:64.357528px;}
._3b{width:68.889755px;}
._7c{width:71.700455px;}
._36{width:77.136488px;}
._a3{width:92.698819px;}
._34{width:94.173463px;}
._37{width:95.305204px;}
._65{width:97.032455px;}
._35{width:100.142196px;}
._e4{width:101.742455px;}
._bf{width:103.974455px;}
._95{width:106.590455px;}
._67{width:138.291806px;}
._da{width:139.541587px;}
._45{width:141.480455px;}
._42{width:162.478819px;}
._92{width:165.696455px;}
._72{width:169.032455px;}
._56{width:171.780455px;}
._5e{width:173.094455px;}
._4e{width:176.364455px;}
._86{width:184.660819px;}
._8f{width:186.694819px;}
._43{width:187.873403px;}
._53{width:192.778819px;}
._5c{width:194.092819px;}
._4b{width:197.362819px;}
._87{width:210.328863px;}
._90{width:212.089403px;}
._63{width:213.472863px;}
._a4{width:216.808863px;}
._54{width:218.446863px;}
._5d{width:219.487403px;}
._4c{width:223.030863px;}
._7e{width:231.240202px;}
._bc{width:242.279422px;}
._6f{width:290.110819px;}
._70{width:315.778863px;}
._e7{width:344.385356px;}
._f2{width:345.759356px;}
._e6{width:347.985356px;}
._ec{width:349.293356px;}
._f5{width:350.343356px;}
._7a{width:369.283732px;}
._ed{width:379.269356px;}
._44{width:405.341391px;}
._77{width:408.844454px;}
._79{width:428.019953px;}
._91{width:429.557391px;}
._64{width:430.994664px;}
._a5{width:434.003391px;}
._55{width:435.968664px;}
._be{width:437.609391px;}
._4d{width:440.552664px;}
._7d{width:457.766701px;}
._81{width:467.188590px;}
._76{width:498.710921px;}
._68{width:505.098675px;}
._69{width:516.384673px;}
._71{width:533.300664px;}
._e3{width:557.110863px;}
._80{width:558.497750px;}
._7b{width:576.694671px;}
._41{width:596.874994px;}
._75{width:607.957347px;}
._b0{width:611.690437px;}
._93{width:618.108893px;}
._85{width:619.187903px;}
._8e{width:621.090994px;}
._62{width:622.331903px;}
._a2{width:625.667903px;}
._52{width:627.305903px;}
._5b{width:628.488994px;}
._4a{width:631.889903px;}
._78{width:646.159581px;}
._6a{width:658.814780px;}
._74{width:663.659212px;}
._66{width:682.746959px;}
._9d{width:690.668519px;}
._d8{width:712.924885px;}
._6e{width:724.637903px;}
._7f{width:748.229345px;}
._9b{width:775.353547px;}
._ae{width:784.990420px;}
._99{width:812.568510px;}
._c2{width:814.243720px;}
._c0{width:815.551720px;}
._46{width:816.692150px;}
._c4{width:818.827720px;}
._9e{width:821.221151px;}
._b3{width:825.789736px;}
._ba{width:827.751736px;}
._b4{width:834.141919px;}
._d9{width:836.391374px;}
._b6{width:839.115919px;}
._bb{width:840.231919px;}
._a8{width:842.911720px;}
._c3{width:849.133720px;}
._57{width:851.585452px;}
._8b{width:857.607275px;}
._9a{width:863.016939px;}
._cf{width:867.641231px;}
._b7{width:869.031919px;}
._c9{width:873.599231px;}
._ef{width:876.060509px;}
._f1{width:877.302509px;}
._f0{width:881.556509px;}
._f3{width:884.046509px;}
._40{width:885.883058px;}
._a7{width:892.686529px;}
._c1{width:899.922697px;}
._84{width:908.130513px;}
._8d{width:910.099058px;}
._61{width:911.274513px;}
._a1{width:914.610513px;}
._51{width:916.248513px;}
._5a{width:917.497058px;}
._49{width:920.832513px;}
._96{width:922.792964px;}
._a9{width:924.402697px;}
._97{width:930.529370px;}
._dd{width:932.875881px;}
._e5{width:940.860563px;}
._d5{width:942.626197px;}
._e9{width:945.048563px;}
._eb{width:946.356563px;}
._cd{width:948.716197px;}
._ea{width:953.790775px;}
._94{width:956.281866px;}
._e8{width:963.678775px;}
._e2{width:965.969903px;}
._c7{width:971.166208px;}
._ee{width:975.744563px;}
._b9{width:979.909313px;}
._b5{width:981.217313px;}
._8a{width:984.523661px;}
._89{width:986.552753px;}
._3f{width:989.209866px;}
._de{width:990.908105px;}
._d7{width:1001.428426px;}
._d6{width:1006.907499px;}
._83{width:1011.522775px;}
._6d{width:1013.580513px;}
._60{width:1014.666775px;}
._a0{width:1018.002775px;}
._50{width:1019.640775px;}
._59{width:1020.823866px;}
._48{width:1024.224775px;}
._dc{width:1030.831621px;}
._ce{width:1035.548421px;}
._88{width:1050.644449px;}
._b1{width:1057.342105px;}
._db{width:1064.606764px;}
._9c{width:1066.924705px;}
._cc{width:1079.295401px;}
._d4{width:1080.537401px;}
._d1{width:1084.203401px;}
._8c{width:1090.625251px;}
._ca{width:1093.896683px;}
._3e{width:1096.253251px;}
._d3{width:1097.585963px;}
._ac{width:1106.040327px;}
._6c{width:1116.972775px;}
._82{width:1118.500705px;}
._5f{width:1121.644705px;}
._9f{width:1124.915251px;}
._4f{width:1126.618705px;}
._58{width:1127.867251px;}
._47{width:1131.202705px;}
._cb{width:1137.327626px;}
._d0{width:1139.289626px;}
._b2{width:1143.901790px;}
._c6{width:1146.690332px;}
._ad{width:1151.533972px;}
._c5{width:1183.587577px;}
._af{width:1200.286888px;}
._6b{width:1223.950705px;}
._e1{width:1254.912513px;}
._e0{width:1358.304775px;}
._df{width:1465.282705px;}
._17{width:1470.120660px;}
._10{width:1559.305481px;}
._b8{width:1753.099807px;}
._c8{width:1756.507807px;}
._d2{width:1757.881807px;}
._98{width:1759.255807px;}
._f4{width:1761.283807px;}
._aa{width:1762.657807px;}
._ab{width:1764.031807px;}
._a6{width:1765.405807px;}
._2f{width:1785.829807px;}
._3d{width:1789.231807px;}
._73{width:1790.605807px;}
._2a{width:1896.593553px;}
._22{width:1934.150611px;}
._31{width:2038.066949px;}
._14{width:2126.401355px;}
._11{width:2256.812924px;}
.fc5{color:rgb(10,146,141);}
.fc4{color:rgb(79,117,144);}
.fc3{color:rgb(161,49,87);}
.fc2{color:rgb(77,198,244);}
.fc1{color:rgb(16,106,175);}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:42.000000px;}
.fs3{font-size:60.000000px;}
.fs1{font-size:63.000000px;}
.fsa{font-size:65.454600px;}
.fs9{font-size:65.753400px;}
.fsd{font-size:71.731200px;}
.fs0{font-size:72.000000px;}
.fsc{font-size:86.077200px;}
.fs7{font-size:89.664000px;}
.fs2{font-size:102.000000px;}
.fs6{font-size:125.529000px;}
.fsb{font-size:148.722600px;}
.fs8{font-size:191.282400px;}
.fs5{font-size:735.243000px;}
.y0{bottom:0.000000px;}
.yae{bottom:61.507500px;}
.y7b{bottom:61.507523px;}
.y46{bottom:67.196167px;}
.y4{bottom:97.125005px;}
.y45{bottom:107.843167px;}
.y161{bottom:127.669500px;}
.y23f{bottom:128.046000px;}
.y44{bottom:128.166667px;}
.y29e{bottom:128.643000px;}
.y11d{bottom:137.041500px;}
.y16d{bottom:137.173500px;}
.y193{bottom:137.235000px;}
.y1f{bottom:139.264499px;}
.y7a{bottom:143.023505px;}
.y1af{bottom:143.806500px;}
.y1c7{bottom:143.868000px;}
.yff{bottom:143.904000px;}
.y263{bottom:144.781500px;}
.y215{bottom:145.552500px;}
.y2b8{bottom:145.755000px;}
.y1d8{bottom:146.679000px;}
.y4c{bottom:147.883522px;}
.y160{bottom:147.993000px;}
.yad{bottom:148.191000px;}
.y23e{bottom:148.369500px;}
.y43{bottom:148.490167px;}
.y29d{bottom:148.966500px;}
.y1f6{bottom:153.312000px;}
.y27b{bottom:154.285500px;}
.y25{bottom:154.584000px;}
.y11c{bottom:157.365000px;}
.y13a{bottom:157.498500px;}
.y192{bottom:157.558500px;}
.y284{bottom:158.472000px;}
.y79{bottom:163.347005px;}
.y1ae{bottom:164.130000px;}
.y1c6{bottom:164.191500px;}
.yfe{bottom:164.227500px;}
.y262{bottom:165.105000px;}
.y2b7{bottom:166.078500px;}
.y214{bottom:166.474500px;}
.y15f{bottom:168.316500px;}
.yac{bottom:168.516000px;}
.y23d{bottom:168.693000px;}
.y42{bottom:168.813667px;}
.y29c{bottom:169.291500px;}
.y1a4{bottom:173.635500px;}
.y11b{bottom:177.688500px;}
.y139{bottom:177.822000px;}
.y191{bottom:177.882000px;}
.y283{bottom:178.795500px;}
.y78{bottom:183.670505px;}
.y1cd{bottom:184.455000px;}
.y1c5{bottom:184.515000px;}
.yfd{bottom:184.551000px;}
.y261{bottom:185.428500px;}
.y2b6{bottom:186.403500px;}
.y15e{bottom:188.640000px;}
.yab{bottom:188.839500px;}
.y23c{bottom:189.016500px;}
.y41{bottom:189.138667px;}
.y29b{bottom:189.615000px;}
.y16{bottom:196.933500px;}
.y11a{bottom:198.012000px;}
.y138{bottom:198.145500px;}
.y190{bottom:198.205500px;}
.y282{bottom:199.119000px;}
.y2c4{bottom:200.094000px;}
.y77{bottom:203.994005px;}
.y1e6{bottom:204.778500px;}
.y1c4{bottom:204.838500px;}
.yfc{bottom:204.874500px;}
.y260{bottom:205.752000px;}
.y2b5{bottom:206.727000px;}
.y15d{bottom:208.963500px;}
.yaa{bottom:209.163000px;}
.y23b{bottom:209.340000px;}
.y1e{bottom:209.518500px;}
.y15{bottom:209.533503px;}
.y29a{bottom:209.938500px;}
.y1d7{bottom:211.836000px;}
.y1ad{bottom:214.282500px;}
.y119{bottom:218.337000px;}
.y137{bottom:218.469000px;}
.y18f{bottom:218.530500px;}
.y27a{bottom:219.444000px;}
.y2c3{bottom:220.417500px;}
.y1d{bottom:222.118502px;}
.y14{bottom:222.133505px;}
.y76{bottom:224.317505px;}
.y1e5{bottom:225.102000px;}
.y1c3{bottom:225.162000px;}
.yfb{bottom:225.199500px;}
.y25f{bottom:226.075500px;}
.y2b4{bottom:227.050500px;}
.y174{bottom:227.974500px;}
.y213{bottom:229.099500px;}
.y40{bottom:229.160167px;}
.y15c{bottom:229.288500px;}
.ya9{bottom:229.486500px;}
.y23a{bottom:229.665000px;}
.y299{bottom:230.262000px;}
.y1d6{bottom:232.161000px;}
.y1cc{bottom:234.607500px;}
.y1c{bottom:234.718504px;}
.y13{bottom:234.733496px;}
.y26f{bottom:235.581000px;}
.y118{bottom:238.660500px;}
.y136{bottom:238.792500px;}
.y18e{bottom:238.854000px;}
.y279{bottom:239.767500px;}
.y2c2{bottom:240.741000px;}
.y1f4{bottom:242.979000px;}
.y75{bottom:244.642505px;}
.y1e4{bottom:245.425500px;}
.yfa{bottom:245.523000px;}
.y25e{bottom:246.400500px;}
.y2b3{bottom:247.374000px;}
.y212{bottom:249.424500px;}
.y15b{bottom:249.612000px;}
.ya8{bottom:249.810000px;}
.y239{bottom:249.988500px;}
.y298{bottom:250.585500px;}
.y1d5{bottom:252.484500px;}
.y1d0{bottom:254.991000px;}
.y117{bottom:258.984000px;}
.y135{bottom:259.117500px;}
.y18d{bottom:259.177500px;}
.y1b{bottom:259.918497px;}
.y12{bottom:259.933500px;}
.y278{bottom:260.091000px;}
.y2c1{bottom:261.066000px;}
.y1f3{bottom:263.302500px;}
.y74{bottom:264.966005px;}
.yf9{bottom:265.846500px;}
.y25d{bottom:266.724000px;}
.y2b2{bottom:267.697500px;}
.y1ea{bottom:268.621500px;}
.y211{bottom:269.748000px;}
.y3f{bottom:269.826067px;}
.y15a{bottom:269.935500px;}
.ya7{bottom:270.135000px;}
.y238{bottom:270.312000px;}
.y297{bottom:270.909000px;}
.y1a{bottom:272.518500px;}
.y11{bottom:272.533503px;}
.y1d4{bottom:272.808000px;}
.y1c2{bottom:275.316000px;}
.y116{bottom:279.307500px;}
.y134{bottom:279.441000px;}
.y18c{bottom:279.501000px;}
.y277{bottom:280.414500px;}
.y2c0{bottom:281.389500px;}
.y1f2{bottom:283.626000px;}
.y19{bottom:285.118502px;}
.y10{bottom:285.133499px;}
.y73{bottom:285.289505px;}
.yf8{bottom:286.170000px;}
.y210{bottom:290.071500px;}
.y3e{bottom:290.149567px;}
.y159{bottom:290.259000px;}
.ya6{bottom:290.458500px;}
.y237{bottom:290.635500px;}
.y296{bottom:291.234000px;}
.y1cf{bottom:292.962000px;}
.y173{bottom:293.131500px;}
.y1e3{bottom:295.578000px;}
.y115{bottom:299.631000px;}
.y133{bottom:299.764500px;}
.y18b{bottom:299.824500px;}
.y26e{bottom:300.738000px;}
.y2bf{bottom:301.713000px;}
.y1f1{bottom:303.951000px;}
.y72{bottom:305.613005px;}
.yf7{bottom:306.493500px;}
.y18{bottom:310.318501px;}
.yf{bottom:310.333501px;}
.y20f{bottom:310.395000px;}
.y1db{bottom:310.582500px;}
.ya5{bottom:310.782000px;}
.y236{bottom:310.959000px;}
.y295{bottom:311.557500px;}
.y172{bottom:313.455000px;}
.y25c{bottom:316.876500px;}
.y2b1{bottom:317.850000px;}
.y114{bottom:319.954500px;}
.y132{bottom:320.088000px;}
.y26d{bottom:321.063000px;}
.y2be{bottom:322.036500px;}
.y17{bottom:322.918500px;}
.ye{bottom:322.933500px;}
.y1f0{bottom:324.274500px;}
.y71{bottom:325.936655px;}
.yf6{bottom:326.818500px;}
.y24{bottom:330.381000px;}
.y20e{bottom:330.718500px;}
.y1da{bottom:330.906000px;}
.ya4{bottom:331.105500px;}
.y235{bottom:331.282500px;}
.y294{bottom:331.881000px;}
.y171{bottom:333.778500px;}
.y113{bottom:340.279500px;}
.y131{bottom:340.411500px;}
.y1c1{bottom:340.473000px;}
.y26c{bottom:341.386500px;}
.y2bd{bottom:342.360000px;}
.y1ef{bottom:344.598000px;}
.yf5{bottom:347.142000px;}
.yd5{bottom:347.469000px;}
.yd{bottom:348.133500px;}
.y16c{bottom:349.917000px;}
.y18a{bottom:349.978500px;}
.y20d{bottom:351.042000px;}
.y1d9{bottom:351.231000px;}
.ya3{bottom:351.429000px;}
.y293{bottom:352.204500px;}
.y170{bottom:354.103500px;}
.y112{bottom:360.603000px;}
.y130{bottom:360.735000px;}
.y1c0{bottom:360.796500px;}
.y26b{bottom:361.710000px;}
.y70{bottom:362.625005px;}
.y2bc{bottom:362.683500px;}
.y1ee{bottom:364.921500px;}
.yf4{bottom:367.465500px;}
.yd4{bottom:367.792500px;}
.y20c{bottom:371.367000px;}
.ya2{bottom:371.754000px;}
.y16f{bottom:374.427000px;}
.y23{bottom:378.201000px;}
.y111{bottom:380.926500px;}
.y12f{bottom:381.060000px;}
.y1bf{bottom:381.120000px;}
.y234{bottom:381.436500px;}
.y25b{bottom:382.033500px;}
.y6f{bottom:382.948505px;}
.y2b0{bottom:383.008500px;}
.y1ed{bottom:385.245000px;}
.yc{bottom:386.785499px;}
.yf3{bottom:387.789000px;}
.yd3{bottom:388.117500px;}
.y1a6{bottom:390.564000px;}
.y20b{bottom:391.690500px;}
.ya1{bottom:392.077500px;}
.y16e{bottom:394.750500px;}
.y110{bottom:401.250000px;}
.y12e{bottom:401.383500px;}
.y1be{bottom:401.443500px;}
.y233{bottom:402.357000px;}
.y6e{bottom:403.272005px;}
.y2af{bottom:403.332000px;}
.y158{bottom:405.568500px;}
.yb{bottom:408.044999px;}
.yf2{bottom:408.112500px;}
.yd2{bottom:408.441000px;}
.y20a{bottom:412.014000px;}
.ya0{bottom:412.401000px;}
.y16b{bottom:415.074000px;}
.y189{bottom:415.135500px;}
.y10f{bottom:421.573500px;}
.y12d{bottom:421.707000px;}
.y1bd{bottom:421.767000px;}
.y25a{bottom:422.680500px;}
.y2c7{bottom:423.279000px;}
.y6d{bottom:423.595505px;}
.y2ae{bottom:423.655500px;}
.y157{bottom:425.893500px;}
.yf1{bottom:428.436000px;}
.yd1{bottom:428.764500px;}
.y1b0{bottom:431.212500px;}
.y209{bottom:432.337500px;}
.y9f{bottom:432.724500px;}
.y16a{bottom:435.397500px;}
.y188{bottom:435.459000px;}
.y10e{bottom:441.898500px;}
.y12c{bottom:442.030500px;}
.y1bc{bottom:442.092000px;}
.y259{bottom:443.005500px;}
.y6c{bottom:443.919005px;}
.y2ad{bottom:443.979000px;}
.y156{bottom:446.217000px;}
.yf0{bottom:448.761000px;}
.yd0{bottom:449.088000px;}
.y1f5{bottom:451.536000px;}
.y281{bottom:452.509500px;}
.y208{bottom:452.661000px;}
.y9e{bottom:453.048000px;}
.y3d{bottom:454.707022px;}
.y169{bottom:455.722500px;}
.y187{bottom:455.782500px;}
.y10d{bottom:462.222000px;}
.y1a3{bottom:462.354000px;}
.y1bb{bottom:462.415500px;}
.y258{bottom:463.329000px;}
.y6b{bottom:464.244005px;}
.y2ac{bottom:464.302500px;}
.y232{bottom:465.942000px;}
.y155{bottom:466.540500px;}
.y292{bottom:467.514000px;}
.yef{bottom:469.084500px;}
.ycf{bottom:469.411500px;}
.y216{bottom:471.859500px;}
.y207{bottom:472.986000px;}
.y9d{bottom:473.373000px;}
.y3c{bottom:475.030522px;}
.y168{bottom:476.046000px;}
.y186{bottom:476.106000px;}
.y10c{bottom:482.545500px;}
.y1e2{bottom:482.677500px;}
.y1a2{bottom:482.679000px;}
.y1ba{bottom:482.739000px;}
.y257{bottom:483.652500px;}
.y6a{bottom:484.567505px;}
.y2ab{bottom:484.627500px;}
.y231{bottom:486.267000px;}
.y154{bottom:486.864000px;}
.y291{bottom:487.839000px;}
.yee{bottom:489.408000px;}
.yce{bottom:489.736500px;}
.y12b{bottom:492.183000px;}
.y9c{bottom:493.696500px;}
.y2bb{bottom:494.131500px;}
.y3b{bottom:495.355522px;}
.y167{bottom:496.369500px;}
.y185{bottom:496.429500px;}
.y1a1{bottom:503.002500px;}
.y1b9{bottom:503.062500px;}
.y256{bottom:503.976000px;}
.y69{bottom:504.891005px;}
.y2aa{bottom:504.951000px;}
.y230{bottom:506.590500px;}
.y153{bottom:507.187500px;}
.y290{bottom:508.162500px;}
.yed{bottom:509.731500px;}
.ycd{bottom:510.060000px;}
.y1e8{bottom:512.506500px;}
.y276{bottom:513.481500px;}
.y9b{bottom:514.020000px;}
.y2ba{bottom:515.053500px;}
.y166{bottom:516.693000px;}
.y184{bottom:516.754500px;}
.y280{bottom:517.668000px;}
.y206{bottom:519.268500px;}
.ya{bottom:520.864502px;}
.y1a0{bottom:523.326000px;}
.y1b8{bottom:523.386000px;}
.y255{bottom:524.299500px;}
.y68{bottom:525.214505px;}
.y2a9{bottom:525.274500px;}
.y22f{bottom:526.914000px;}
.y152{bottom:527.512500px;}
.y28f{bottom:528.486000px;}
.yec{bottom:530.055000px;}
.ycc{bottom:530.383500px;}
.y10b{bottom:532.698000px;}
.y1c9{bottom:532.831500px;}
.y9a{bottom:534.343500px;}
.y165{bottom:537.016500px;}
.y183{bottom:537.078000px;}
.y27f{bottom:537.991500px;}
.y9{bottom:538.864499px;}
.y205{bottom:540.190500px;}
.y1ac{bottom:543.649500px;}
.y1b7{bottom:543.711000px;}
.y254{bottom:544.624500px;}
.y67{bottom:545.538005px;}
.y2a8{bottom:545.598000px;}
.y1d3{bottom:546.522000px;}
.y22e{bottom:547.237500px;}
.y151{bottom:547.836000px;}
.y28e{bottom:548.809500px;}
.ycb{bottom:550.707000px;}
.y1cb{bottom:553.155000px;}
.y99{bottom:554.667000px;}
.y8{bottom:556.864499px;}
.y12a{bottom:557.340000px;}
.y182{bottom:557.401500px;}
.y27e{bottom:558.315000px;}
.y1ab{bottom:563.973000px;}
.y1b6{bottom:564.034500px;}
.y253{bottom:564.948000px;}
.y66{bottom:565.863005px;}
.y2a7{bottom:565.921500px;}
.y22d{bottom:567.561000px;}
.y150{bottom:568.159500px;}
.y28d{bottom:569.133000px;}
.yca{bottom:571.030500px;}
.y19f{bottom:573.478500px;}
.y98{bottom:574.992000px;}
.y129{bottom:577.665000px;}
.y181{bottom:577.725000px;}
.y275{bottom:578.638500px;}
.yeb{bottom:580.209000px;}
.y1e1{bottom:584.296500px;}
.y3a{bottom:584.826022px;}
.y252{bottom:585.271500px;}
.y65{bottom:586.186505px;}
.y2a6{bottom:586.245000px;}
.y1e9{bottom:587.169000px;}
.y22c{bottom:587.886000px;}
.y14f{bottom:588.483000px;}
.y28c{bottom:589.458000px;}
.yc9{bottom:591.355500px;}
.y26a{bottom:594.777000px;}
.y97{bottom:595.315500px;}
.y10a{bottom:597.855000px;}
.y128{bottom:597.988500px;}
.y180{bottom:598.048500px;}
.y274{bottom:598.962000px;}
.y204{bottom:602.817000px;}
.y1e0{bottom:604.621500px;}
.y39{bottom:605.149522px;}
.y251{bottom:605.595000px;}
.y64{bottom:606.510005px;}
.y2a5{bottom:606.570000px;}
.y22b{bottom:608.209500px;}
.y14e{bottom:608.806500px;}
.y28b{bottom:609.781500px;}
.yc8{bottom:611.679000px;}
.y1aa{bottom:614.125500px;}
.y1b5{bottom:614.187000px;}
.y96{bottom:615.639000px;}
.y2b9{bottom:615.697500px;}
.yea{bottom:618.178500px;}
.y127{bottom:618.312000px;}
.y17f{bottom:618.373500px;}
.y273{bottom:619.287000px;}
.y203{bottom:623.140500px;}
.y1df{bottom:624.945000px;}
.y38{bottom:625.474522px;}
.y250{bottom:625.918500px;}
.y63{bottom:626.833505px;}
.y2a4{bottom:626.893500px;}
.y22a{bottom:628.533000px;}
.y14d{bottom:629.130000px;}
.y28a{bottom:630.105000px;}
.yc7{bottom:632.002500px;}
.y95{bottom:635.962500px;}
.y109{bottom:638.503500px;}
.y126{bottom:638.635500px;}
.y17e{bottom:638.697000px;}
.y272{bottom:639.610500px;}
.y202{bottom:643.464000px;}
.y1de{bottom:645.268500px;}
.y7{bottom:645.510000px;}
.y37{bottom:645.798022px;}
.y62{bottom:647.157004px;}
.y164{bottom:648.141000px;}
.y229{bottom:648.856500px;}
.y14c{bottom:649.455000px;}
.y289{bottom:650.428500px;}
.y1b4{bottom:652.158000px;}
.yc6{bottom:652.326000px;}
.y1d2{bottom:652.327500px;}
.y94{bottom:656.286000px;}
.y108{bottom:658.827000px;}
.y125{bottom:658.959000px;}
.y17d{bottom:659.020500px;}
.y269{bottom:659.934000px;}
.y201{bottom:663.787500px;}
.y36{bottom:666.121522px;}
.y6{bottom:666.771000px;}
.y61{bottom:667.482005px;}
.y228{bottom:669.180000px;}
.y199{bottom:669.778500px;}
.y288{bottom:670.752000px;}
.yc5{bottom:672.649500px;}
.y1d1{bottom:672.651000px;}
.y24f{bottom:676.071000px;}
.y93{bottom:676.611000px;}
.y2a3{bottom:677.046000px;}
.y107{bottom:679.150500px;}
.y124{bottom:679.284000px;}
.y17c{bottom:679.344000px;}
.y268{bottom:680.257500px;}
.y200{bottom:684.111000px;}
.ye9{bottom:686.146500px;}
.y35{bottom:686.445022px;}
.y60{bottom:687.805504px;}
.y227{bottom:689.503500px;}
.y198{bottom:690.102000px;}
.y287{bottom:691.075500px;}
.yc4{bottom:692.974500px;}
.y1dd{bottom:695.421000px;}
.y92{bottom:696.934500px;}
.y2a2{bottom:697.968000px;}
.y106{bottom:699.474000px;}
.y123{bottom:699.607500px;}
.y17b{bottom:699.667500px;}
.y267{bottom:700.581000px;}
.y1ff{bottom:704.436000px;}
.ye8{bottom:706.470000px;}
.y34{bottom:706.768522px;}
.y5f{bottom:708.129004px;}
.y226{bottom:709.828500px;}
.y2c6{bottom:710.425500px;}
.y286{bottom:711.400500px;}
.yc3{bottom:713.298000px;}
.y4b{bottom:716.395522px;}
.y91{bottom:717.258000px;}
.y105{bottom:719.797500px;}
.y122{bottom:719.931000px;}
.y17a{bottom:719.991000px;}
.y266{bottom:720.904500px;}
.y1ec{bottom:724.117500px;}
.y1fe{bottom:724.759500px;}
.y5{bottom:726.298500px;}
.ye7{bottom:726.793500px;}
.y33{bottom:727.093522px;}
.y5e{bottom:728.452504px;}
.y2c5{bottom:730.749000px;}
.yc2{bottom:733.621500px;}
.y90{bottom:737.581500px;}
.y104{bottom:740.121000px;}
.y121{bottom:740.254500px;}
.y179{bottom:740.316000px;}
.y24e{bottom:741.229500px;}
.y1eb{bottom:744.441000px;}
.y1fd{bottom:745.083000px;}
.ye6{bottom:747.117000px;}
.y3{bottom:752.599495px;}
.yc1{bottom:753.945000px;}
.y4a{bottom:757.042522px;}
.y8f{bottom:757.905000px;}
.y225{bottom:759.981000px;}
.y103{bottom:760.446000px;}
.y120{bottom:760.578000px;}
.y178{bottom:760.639500px;}
.y24d{bottom:761.553000px;}
.y2d6{bottom:761.643000px;}
.y14b{bottom:764.764500px;}
.y5d{bottom:765.139504px;}
.y1fc{bottom:765.406500px;}
.ye5{bottom:767.440500px;}
.yc0{bottom:774.268500px;}
.y163{bottom:774.270000px;}
.y8e{bottom:778.230000px;}
.y102{bottom:780.769500px;}
.y11f{bottom:780.901500px;}
.y177{bottom:780.963000px;}
.y24c{bottom:781.876500px;}
.y2d5{bottom:781.966500px;}
.y285{bottom:782.473500px;}
.y14a{bottom:785.088000px;}
.y5c{bottom:785.464504px;}
.y1fb{bottom:785.730000px;}
.ye4{bottom:787.765500px;}
.y1a5{bottom:790.407000px;}
.ybf{bottom:794.593500px;}
.y8d{bottom:798.553500px;}
.y197{bottom:801.226500px;}
.y24b{bottom:802.200000px;}
.y2d4{bottom:802.290000px;}
.y149{bottom:805.411500px;}
.y5b{bottom:805.788004px;}
.y1fa{bottom:806.053500px;}
.ye3{bottom:808.089000px;}
.y27d{bottom:811.705500px;}
.y32{bottom:814.896646px;}
.ybe{bottom:814.917000px;}
.y49{bottom:818.014522px;}
.y8c{bottom:818.877000px;}
.y196{bottom:821.550000px;}
.y24a{bottom:822.523500px;}
.y2d3{bottom:822.613500px;}
.y224{bottom:825.138000px;}
.y148{bottom:825.735000px;}
.y5a{bottom:826.111504px;}
.y1f9{bottom:826.378500px;}
.ye2{bottom:828.412500px;}
.y101{bottom:830.922000px;}
.y11e{bottom:831.055500px;}
.y176{bottom:831.115500px;}
.y27c{bottom:832.627500px;}
.ybd{bottom:835.240500px;}
.y8b{bottom:839.200500px;}
.y195{bottom:841.873500px;}
.y249{bottom:842.848500px;}
.y2d2{bottom:842.937000px;}
.y223{bottom:845.461500px;}
.y147{bottom:846.060000px;}
.y59{bottom:846.435004px;}
.y1f8{bottom:846.702000px;}
.ye1{bottom:848.736000px;}
.y1e7{bottom:851.379000px;}
.y31{bottom:855.545146px;}
.ybc{bottom:855.564000px;}
.y8a{bottom:859.524000px;}
.y19e{bottom:862.197000px;}
.y48{bottom:862.845022px;}
.y248{bottom:863.172000px;}
.y2d1{bottom:863.260500px;}
.y222{bottom:865.785000px;}
.y146{bottom:866.383500px;}
.y58{bottom:866.758504px;}
.y22{bottom:868.360500px;}
.y100{bottom:868.893000px;}
.ye0{bottom:869.059500px;}
.y175{bottom:869.086500px;}
.y1ca{bottom:871.702500px;}
.y271{bottom:872.676000px;}
.y30{bottom:875.870146px;}
.ybb{bottom:875.887500px;}
.y162{bottom:875.889000px;}
.y2{bottom:879.369000px;}
.y89{bottom:879.849000px;}
.y19d{bottom:882.520500px;}
.y247{bottom:883.495500px;}
.y2d0{bottom:883.585500px;}
.y221{bottom:886.108500px;}
.y145{bottom:886.707000px;}
.y57{bottom:887.083505px;}
.ydf{bottom:889.383000px;}
.y194{bottom:892.026000px;}
.y1f7{bottom:892.986000px;}
.y270{bottom:893.598000px;}
.y2f{bottom:896.193646px;}
.yba{bottom:896.212500px;}
.y88{bottom:900.172500px;}
.y19c{bottom:902.845500px;}
.y246{bottom:903.819000px;}
.y2cf{bottom:903.909000px;}
.y220{bottom:906.433500px;}
.y144{bottom:907.030500px;}
.y56{bottom:907.407004px;}
.yde{bottom:909.708000px;}
.y2e{bottom:916.517146px;}
.yb9{bottom:916.536000px;}
.y87{bottom:920.496000px;}
.y19b{bottom:923.169000px;}
.y245{bottom:924.142500px;}
.y2ce{bottom:924.232500px;}
.y21f{bottom:926.757000px;}
.y143{bottom:927.354000px;}
.y55{bottom:927.730505px;}
.ydd{bottom:930.031500px;}
.y1ce{bottom:932.673000px;}
.y2d{bottom:936.840646px;}
.yb8{bottom:936.859500px;}
.y86{bottom:940.819500px;}
.y1a9{bottom:943.492500px;}
.y244{bottom:944.466000px;}
.y2cd{bottom:944.556000px;}
.y21e{bottom:947.080500px;}
.y142{bottom:947.679000px;}
.y54{bottom:948.054005px;}
.ydc{bottom:950.355000px;}
.y265{bottom:953.971500px;}
.y2c{bottom:957.164146px;}
.yb7{bottom:957.183000px;}
.y85{bottom:961.143000px;}
.y1a8{bottom:963.816000px;}
.y243{bottom:964.791000px;}
.y2cc{bottom:964.879500px;}
.y1{bottom:966.726000px;}
.y21d{bottom:967.404000px;}
.y141{bottom:968.002500px;}
.y53{bottom:968.377504px;}
.ydb{bottom:970.678500px;}
.y19a{bottom:973.321500px;}
.y264{bottom:974.893500px;}
.y2b{bottom:977.489146px;}
.yb6{bottom:977.506500px;}
.y84{bottom:981.466500px;}
.y1b3{bottom:984.139500px;}
.y242{bottom:985.114500px;}
.y2cb{bottom:985.204500px;}
.y21c{bottom:987.727500px;}
.y140{bottom:988.326000px;}
.y52{bottom:988.702505px;}
.yda{bottom:991.002000px;}
.y1c8{bottom:993.645000px;}
.yb5{bottom:997.831500px;}
.y83{bottom:1001.791500px;}
.y1b2{bottom:1004.463000px;}
.y2a1{bottom:1005.438000px;}
.y2ca{bottom:1005.528000px;}
.y20{bottom:1006.609500px;}
.y21b{bottom:1008.052500px;}
.y13f{bottom:1008.649500px;}
.yd9{bottom:1011.327000px;}
.y1a7{bottom:1013.968500px;}
.y21{bottom:1015.113000px;}
.yb4{bottom:1018.155000px;}
.y2a{bottom:1018.155046px;}
.y82{bottom:1022.115000px;}
.y51{bottom:1025.389504px;}
.y21a{bottom:1028.376000px;}
.y13e{bottom:1028.973000px;}
.yd8{bottom:1031.650500px;}
.y1dc{bottom:1034.292000px;}
.y241{bottom:1035.267000px;}
.yb3{bottom:1038.478500px;}
.y29{bottom:1038.478546px;}
.y81{bottom:1042.438500px;}
.y50{bottom:1045.713004px;}
.y219{bottom:1048.699500px;}
.y13d{bottom:1049.296500px;}
.yd7{bottom:1051.974000px;}
.y1b1{bottom:1054.617000px;}
.y2a0{bottom:1055.590500px;}
.y2c9{bottom:1055.680500px;}
.y240{bottom:1056.189000px;}
.yb2{bottom:1058.802000px;}
.y80{bottom:1062.762000px;}
.y218{bottom:1069.023000px;}
.y13c{bottom:1069.621500px;}
.y29f{bottom:1076.512500px;}
.y2c8{bottom:1076.602500px;}
.yb1{bottom:1079.125500px;}
.y4f{bottom:1082.400005px;}
.y7f{bottom:1083.085500px;}
.y13b{bottom:1089.945000px;}
.y28{bottom:1099.431604px;}
.yb0{bottom:1099.450500px;}
.yd6{bottom:1102.126500px;}
.y4e{bottom:1102.725005px;}
.y7e{bottom:1103.410500px;}
.y217{bottom:1119.175500px;}
.yaf{bottom:1119.774000px;}
.y27{bottom:1119.774004px;}
.y47{bottom:1120.276519px;}
.y7d{bottom:1140.097500px;}
.y26{bottom:1140.097504px;}
.y7c{bottom:1193.145000px;}
.y4d{bottom:1193.145022px;}
.h7{height:32.130000px;}
.h6{height:45.900000px;}
.h12{height:47.454585px;}
.he{height:47.716403px;}
.h15{height:47.722403px;}
.hd{height:47.934229px;}
.h3{height:48.195000px;}
.h10{height:48.240040px;}
.h13{height:48.370949px;}
.h17{height:48.730403px;}
.h16{height:48.994403px;}
.h18{height:49.252403px;}
.h14{height:52.292045px;}
.h2{height:55.080000px;}
.h11{height:62.405970px;}
.hb{height:65.006400px;}
.h5{height:78.030000px;}
.ha{height:91.008525px;}
.hf{height:107.823885px;}
.h4{height:119.055004px;}
.hc{height:138.679740px;}
.h9{height:489.671838px;}
.h0{height:1262.833500px;}
.h8{height:1262.835000px;}
.h1{height:1263.000000px;}
.w2{width:637.794021px;}
.w0{width:892.912500px;}
.w3{width:892.920000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x7{left:85.039500px;}
.x8{left:87.165000px;}
.x1{left:102.045000px;}
.x2{left:106.297500px;}
.x9{left:133.938000px;}
.xe{left:142.905000px;}
.x13{left:144.214500px;}
.xd{left:145.899000px;}
.x18{left:148.681500px;}
.x17{left:149.728500px;}
.x16{left:151.626000px;}
.xb{left:158.483850px;}
.xf{left:167.172000px;}
.x15{left:168.268500px;}
.x12{left:185.466000px;}
.x11{left:186.988500px;}
.x14{left:192.289500px;}
.x10{left:194.188500px;}
.xc{left:196.120500px;}
.x4{left:203.484001px;}
.xa{left:417.351013px;}
.x3{left:454.959000px;}
.x5{left:484.266000px;}
.x6{left:832.947000px;}
@media print{
.v2{vertical-align:-6.080000pt;}
.v1{vertical-align:-4.656000pt;}
.v6{vertical-align:-0.901333pt;}
.v0{vertical-align:0.000000pt;}
.v5{vertical-align:1.136000pt;}
.v4{vertical-align:4.944000pt;}
.v3{vertical-align:6.080000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls1{letter-spacing:29.090933pt;}
.ls10{letter-spacing:63.757065pt;}
.ls3{letter-spacing:63.762398pt;}
.ls6{letter-spacing:1185.154398pt;}
.lsc{letter-spacing:1186.317065pt;}
.lsa{letter-spacing:1188.877065pt;}
.ls8{letter-spacing:1189.229065pt;}
.lsf{letter-spacing:1189.346398pt;}
.lse{letter-spacing:1189.575732pt;}
.ls11{letter-spacing:1189.634398pt;}
.lsb{letter-spacing:1190.039732pt;}
.lsd{letter-spacing:1190.391732pt;}
.ls9{letter-spacing:1190.450398pt;}
.ls12{letter-spacing:1190.567732pt;}
.ls5{letter-spacing:1210.637065pt;}
.ls4{letter-spacing:1210.642398pt;}
.ls7{letter-spacing:1216.167732pt;}
.ls2{letter-spacing:1310.941065pt;}
.ws1{word-spacing:-379.712163pt;}
.wsf{word-spacing:-66.098933pt;}
.ws3{word-spacing:-56.789619pt;}
.ws4{word-spacing:-42.507200pt;}
.wse{word-spacing:-33.049467pt;}
.ws13b{word-spacing:-31.880533pt;}
.wsb{word-spacing:-29.090933pt;}
.ws55{word-spacing:-24.087293pt;}
.ws40{word-spacing:-23.505474pt;}
.ws64{word-spacing:-22.516382pt;}
.ws47{word-spacing:-22.458201pt;}
.ws58{word-spacing:-22.167291pt;}
.ws52{word-spacing:-21.585473pt;}
.ws5f{word-spacing:-20.712745pt;}
.ws29{word-spacing:-20.247290pt;}
.ws2{word-spacing:-19.925333pt;}
.ws12{word-spacing:-19.374562pt;}
.ws14{word-spacing:-19.316380pt;}
.ws15{word-spacing:-19.258198pt;}
.ws82{word-spacing:-19.204780pt;}
.ws44{word-spacing:-18.734561pt;}
.ws3c{word-spacing:-18.210924pt;}
.ws14c{word-spacing:-17.789338pt;}
.ws14b{word-spacing:-17.761971pt;}
.ws4d{word-spacing:-17.745469pt;}
.ws4e{word-spacing:-17.459600pt;}
.ws7{word-spacing:-17.163651pt;}
.ws1f{word-spacing:-16.930923pt;}
.ws10{word-spacing:-16.872741pt;}
.ws5d{word-spacing:-16.058195pt;}
.wse6{word-spacing:-16.005564pt;}
.ws111{word-spacing:-16.005513pt;}
.wse9{word-spacing:-16.005478pt;}
.wseb{word-spacing:-16.005239pt;}
.ws65{word-spacing:-16.005086pt;}
.wse3{word-spacing:-16.004915pt;}
.ws12a{word-spacing:-16.004531pt;}
.ws14f{word-spacing:-16.004454pt;}
.ws114{word-spacing:-16.004378pt;}
.wse4{word-spacing:-16.004361pt;}
.ws153{word-spacing:-16.004301pt;}
.ws12d{word-spacing:-16.004130pt;}
.ws66{word-spacing:-16.004028pt;}
.wse8{word-spacing:-16.003968pt;}
.ws118{word-spacing:-16.003686pt;}
.ws115{word-spacing:-16.003439pt;}
.ws14d{word-spacing:-16.003422pt;}
.ws127{word-spacing:-16.003379pt;}
.wse7{word-spacing:-16.003251pt;}
.wsf9{word-spacing:-16.003200pt;}
.ws10e{word-spacing:-16.003055pt;}
.wsa0{word-spacing:-16.002970pt;}
.wsc1{word-spacing:-16.002551pt;}
.ws123{word-spacing:-16.002441pt;}
.wse5{word-spacing:-16.002372pt;}
.ws152{word-spacing:-16.002313pt;}
.ws150{word-spacing:-16.002219pt;}
.ws131{word-spacing:-16.002176pt;}
.wsea{word-spacing:-16.001818pt;}
.ws97{word-spacing:-16.001690pt;}
.wse1{word-spacing:-16.001655pt;}
.ws12f{word-spacing:-16.001306pt;}
.ws151{word-spacing:-16.001280pt;}
.ws110{word-spacing:-16.001118pt;}
.ws116{word-spacing:-15.941973pt;}
.ws12b{word-spacing:-15.941316pt;}
.ws87{word-spacing:-15.941265pt;}
.ws83{word-spacing:-15.941077pt;}
.wsdd{word-spacing:-15.941052pt;}
.wsdf{word-spacing:-15.940582pt;}
.wsd5{word-spacing:-15.940420pt;}
.ws84{word-spacing:-15.940267pt;}
.ws10f{word-spacing:-15.939908pt;}
.wsec{word-spacing:-15.939575pt;}
.wse2{word-spacing:-15.939319pt;}
.ws13a{word-spacing:-15.939004pt;}
.ws130{word-spacing:-15.938970pt;}
.ws135{word-spacing:-15.938910pt;}
.ws112{word-spacing:-15.938782pt;}
.ws132{word-spacing:-15.938645pt;}
.ws12c{word-spacing:-15.938500pt;}
.ws9e{word-spacing:-15.938048pt;}
.ws138{word-spacing:-15.937971pt;}
.ws73{word-spacing:-15.937929pt;}
.ws113{word-spacing:-15.937843pt;}
.wsbe{word-spacing:-15.937766pt;}
.wsf8{word-spacing:-15.937604pt;}
.ws9c{word-spacing:-15.937365pt;}
.wsfa{word-spacing:-15.937109pt;}
.ws9f{word-spacing:-15.936853pt;}
.ws62{word-spacing:-15.534558pt;}
.ws1d{word-spacing:-15.243649pt;}
.wsd{word-spacing:-15.185467pt;}
.ws9{word-spacing:-15.127285pt;}
.ws5{word-spacing:-14.670314pt;}
.ws8{word-spacing:-14.603649pt;}
.wsa{word-spacing:-14.545467pt;}
.ws41{word-spacing:-13.905466pt;}
.ws48{word-spacing:-13.614557pt;}
.ws53{word-spacing:-13.498193pt;}
.ws3d{word-spacing:-13.381829pt;}
.ws6{word-spacing:-13.265466pt;}
.wsc{word-spacing:-10.472736pt;}
.ws1e{word-spacing:-7.796370pt;}
.ws31{word-spacing:-7.750549pt;}
.ws32{word-spacing:-7.749616pt;}
.ws2f{word-spacing:-7.748949pt;}
.ws42{word-spacing:-7.748683pt;}
.ws2e{word-spacing:-7.748016pt;}
.ws3e{word-spacing:-7.747083pt;}
.ws37{word-spacing:-7.746416pt;}
.ws45{word-spacing:-7.746149pt;}
.ws30{word-spacing:-7.745483pt;}
.ws25{word-spacing:-7.743883pt;}
.ws23{word-spacing:-7.742283pt;}
.ws24{word-spacing:-7.742016pt;}
.ws36{word-spacing:-7.741349pt;}
.ws33{word-spacing:-7.738149pt;}
.ws46{word-spacing:-7.737883pt;}
.ws3b{word-spacing:-7.737216pt;}
.ws43{word-spacing:-7.736283pt;}
.ws2a{word-spacing:-7.735616pt;}
.ws2c{word-spacing:-7.733749pt;}
.ws3a{word-spacing:-7.731216pt;}
.ws60{word-spacing:-7.396004pt;}
.ws59{word-spacing:-6.521409pt;}
.ws5a{word-spacing:-4.726283pt;}
.ws50{word-spacing:-4.721216pt;}
.ws49{word-spacing:-4.719349pt;}
.ws27{word-spacing:-4.717749pt;}
.ws5b{word-spacing:-4.716816pt;}
.ws39{word-spacing:-4.715483pt;}
.ws38{word-spacing:-4.714549pt;}
.ws26{word-spacing:-4.713616pt;}
.ws4a{word-spacing:-4.712949pt;}
.ws28{word-spacing:-4.712731pt;}
.ws51{word-spacing:-4.708549pt;}
.ws5c{word-spacing:-4.706949pt;}
.ws54{word-spacing:-4.705349pt;}
.ws3f{word-spacing:-3.488149pt;}
.ws2d{word-spacing:-3.483083pt;}
.ws18{word-spacing:-2.327275pt;}
.ws22{word-spacing:-2.278549pt;}
.ws34{word-spacing:-2.275083pt;}
.ws20{word-spacing:-2.269349pt;}
.ws1a{word-spacing:-2.269093pt;}
.ws35{word-spacing:-2.268416pt;}
.ws56{word-spacing:-1.694683pt;}
.ws57{word-spacing:-1.682949pt;}
.ws61{word-spacing:-0.479083pt;}
.ws63{word-spacing:-0.474016pt;}
.ws5e{word-spacing:-0.464149pt;}
.ws0{word-spacing:0.000000pt;}
.ws1b{word-spacing:0.698182pt;}
.ws4f{word-spacing:0.740384pt;}
.ws4b{word-spacing:0.747317pt;}
.ws4c{word-spacing:0.760651pt;}
.ws1c{word-spacing:1.920002pt;}
.ws19{word-spacing:3.141821pt;}
.ws13{word-spacing:21.294563pt;}
.ws17{word-spacing:21.352745pt;}
.ws16{word-spacing:25.541839pt;}
.ws11{word-spacing:26.240022pt;}
.ws21{word-spacing:26.298204pt;}
.ws71{word-spacing:34.610853pt;}
.wsa9{word-spacing:34.611321pt;}
.wsb9{word-spacing:34.611804pt;}
.wsb3{word-spacing:34.612292pt;}
.wsaf{word-spacing:34.613262pt;}
.ws81{word-spacing:34.616187pt;}
.wsd4{word-spacing:34.666123pt;}
.wsad{word-spacing:34.667565pt;}
.wsab{word-spacing:34.668051pt;}
.wsb5{word-spacing:34.668530pt;}
.wsb1{word-spacing:34.668534pt;}
.ws95{word-spacing:34.668554pt;}
.wsbd{word-spacing:34.669035pt;}
.wse0{word-spacing:34.669503pt;}
.ws72{word-spacing:34.671457pt;}
.ws7b{word-spacing:34.673887pt;}
.ws2b{word-spacing:50.392202pt;}
.ws9b{word-spacing:458.696128pt;}
.ws137{word-spacing:851.366487pt;}
.ws13e{word-spacing:855.553154pt;}
.ws148{word-spacing:855.787821pt;}
.ws149{word-spacing:855.846487pt;}
.ws143{word-spacing:856.022487pt;}
.ws140{word-spacing:856.603821pt;}
.ws13d{word-spacing:856.774487pt;}
.wsde{word-spacing:856.951025pt;}
.ws142{word-spacing:858.465154pt;}
.ws139{word-spacing:882.374487pt;}
.ws14a{word-spacing:884.817690pt;}
.ws136{word-spacing:912.108356pt;}
.ws13f{word-spacing:913.271023pt;}
.ws146{word-spacing:913.852356pt;}
.ws13c{word-spacing:915.015023pt;}
.ws141{word-spacing:915.425690pt;}
.ws14e{word-spacing:915.713690pt;}
.ws145{word-spacing:916.177690pt;}
.ws147{word-spacing:916.471023pt;}
.ws144{word-spacing:916.588356pt;}
.wsf5{word-spacing:934.218406pt;}
.ws9a{word-spacing:953.009287pt;}
.ws126{word-spacing:955.744748pt;}
.ws86{word-spacing:967.960087pt;}
.ws98{word-spacing:971.046080pt;}
.wsf7{word-spacing:975.873253pt;}
.wsae{word-spacing:976.170929pt;}
.wsa1{word-spacing:986.585043pt;}
.wsa3{word-spacing:998.745493pt;}
.ws125{word-spacing:1001.883481pt;}
.wsb2{word-spacing:1010.032775pt;}
.wsb6{word-spacing:1011.254595pt;}
.ws99{word-spacing:1012.472106pt;}
.ws85{word-spacing:1013.867519pt;}
.wsac{word-spacing:1023.647332pt;}
.ws124{word-spacing:1025.211981pt;}
.wsa7{word-spacing:1026.959357pt;}
.wsa4{word-spacing:1035.923706pt;}
.wsbc{word-spacing:1039.123709pt;}
.wsb8{word-spacing:1040.287346pt;}
.wsa8{word-spacing:1040.927347pt;}
.wsb4{word-spacing:1045.814623pt;}
.ws117{word-spacing:1046.975400pt;}
.wsb7{word-spacing:1047.327352pt;}
.wsba{word-spacing:1061.232818pt;}
.wsed{word-spacing:1062.565205pt;}
.wsaa{word-spacing:1068.331006pt;}
.wsb0{word-spacing:1069.901916pt;}
.wsa2{word-spacing:1072.054645pt;}
.wsf1{word-spacing:1081.072372pt;}
.wsa5{word-spacing:1084.389201pt;}
.ws133{word-spacing:1085.603311pt;}
.wsa6{word-spacing:1087.007385pt;}
.wsf4{word-spacing:1093.578539pt;}
.wsc0{word-spacing:1095.497619pt;}
.ws134{word-spacing:1098.462952pt;}
.wsf0{word-spacing:1100.559900pt;}
.wsbb{word-spacing:1103.414671pt;}
.ws9d{word-spacing:1103.640102pt;}
.wsbf{word-spacing:1113.123311pt;}
.wsee{word-spacing:1117.197978pt;}
.wsef{word-spacing:1122.201619pt;}
.wsf2{word-spacing:1123.425836pt;}
.wsf3{word-spacing:1128.487659pt;}
.wsf6{word-spacing:1131.687661pt;}
.ws68{word-spacing:1188.760607pt;}
.ws6a{word-spacing:1188.761576pt;}
.ws6c{word-spacing:1188.762061pt;}
.ws6b{word-spacing:1188.816364pt;}
.ws6f{word-spacing:1188.816849pt;}
.ws70{word-spacing:1188.817327pt;}
.ws69{word-spacing:1188.817334pt;}
.ws6e{word-spacing:1188.817818pt;}
.ws67{word-spacing:1192.947760pt;}
.ws6d{word-spacing:1198.706789pt;}
.wsd3{word-spacing:1210.340724pt;}
.wsc2{word-spacing:1215.524239pt;}
.wscb{word-spacing:1218.603994pt;}
.wsce{word-spacing:1218.783394pt;}
.ws93{word-spacing:1228.031877pt;}
.ws129{word-spacing:1228.379994pt;}
.ws128{word-spacing:1229.136364pt;}
.ws94{word-spacing:1231.060239pt;}
.wsc7{word-spacing:1241.300239pt;}
.wsc9{word-spacing:1241.355029pt;}
.wscc{word-spacing:1241.355994pt;}
.wscd{word-spacing:1242.461934pt;}
.wsc4{word-spacing:1242.462906pt;}
.wsc5{word-spacing:1245.022906pt;}
.wsd1{word-spacing:1245.776849pt;}
.wscf{word-spacing:1246.184122pt;}
.wsca{word-spacing:1246.532239pt;}
.wsd0{word-spacing:1246.647151pt;}
.wsc8{word-spacing:1246.708239pt;}
.ws91{word-spacing:1247.870906pt;}
.ws8e{word-spacing:1247.871877pt;}
.ws8f{word-spacing:1247.925696pt;}
.ws104{word-spacing:1248.451273pt;}
.ws103{word-spacing:1248.452239pt;}
.ws109{word-spacing:1248.452727pt;}
.ws8c{word-spacing:1248.981210pt;}
.ws92{word-spacing:1249.621213pt;}
.ws11f{word-spacing:1250.781986pt;}
.wsd8{word-spacing:1250.783394pt;}
.wsd7{word-spacing:1250.837698pt;}
.ws11c{word-spacing:1250.839197pt;}
.ws108{word-spacing:1251.419031pt;}
.ws90{word-spacing:1251.482543pt;}
.ws8d{word-spacing:1251.594543pt;}
.wsfb{word-spacing:1252.180239pt;}
.wsff{word-spacing:1252.180245pt;}
.ws101{word-spacing:1252.235029pt;}
.ws100{word-spacing:1252.581699pt;}
.ws102{word-spacing:1252.583152pt;}
.ws107{word-spacing:1252.644239pt;}
.ws105{word-spacing:1252.873573pt;}
.ws10b{word-spacing:1253.920849pt;}
.ws11e{word-spacing:1255.025863pt;}
.ws11d{word-spacing:1255.147079pt;}
.wsda{word-spacing:1255.260485pt;}
.ws10a{word-spacing:1255.549455pt;}
.wsd6{word-spacing:1257.881576pt;}
.wsc3{word-spacing:1272.308239pt;}
.wsd2{word-spacing:1272.363994pt;}
.wsc6{word-spacing:1272.364001pt;}
.ws12e{word-spacing:1276.321863pt;}
.ws8b{word-spacing:1278.883759pt;}
.ws89{word-spacing:1278.884239pt;}
.ws8a{word-spacing:1278.885210pt;}
.ws88{word-spacing:1278.938543pt;}
.ws96{word-spacing:1278.939994pt;}
.ws106{word-spacing:1279.466059pt;}
.ws10d{word-spacing:1279.466542pt;}
.wsfe{word-spacing:1279.519880pt;}
.wsfd{word-spacing:1279.520850pt;}
.ws10c{word-spacing:1279.521327pt;}
.wsfc{word-spacing:1279.521819pt;}
.wsd9{word-spacing:1281.789455pt;}
.ws119{word-spacing:1281.789988pt;}
.ws120{word-spacing:1281.790470pt;}
.ws11b{word-spacing:1281.791443pt;}
.ws80{word-spacing:1281.792288pt;}
.ws79{word-spacing:1281.792898pt;}
.ws7f{word-spacing:1281.793254pt;}
.ws76{word-spacing:1281.794352pt;}
.ws122{word-spacing:1281.845746pt;}
.wsdb{word-spacing:1281.846182pt;}
.wsdc{word-spacing:1281.846660pt;}
.ws11a{word-spacing:1281.846718pt;}
.ws121{word-spacing:1281.847197pt;}
.ws7e{word-spacing:1281.848044pt;}
.ws7a{word-spacing:1281.848167pt;}
.ws7c{word-spacing:1281.849495pt;}
.ws7d{word-spacing:1281.849497pt;}
.ws77{word-spacing:1281.849625pt;}
.ws75{word-spacing:1281.850110pt;}
.ws74{word-spacing:1281.850132pt;}
.ws78{word-spacing:1281.852530pt;}
._13{margin-left:-29.149115pt;}
._20{margin-left:-28.213705pt;}
._0{margin-left:-25.488424pt;}
._4{margin-left:-7.651296pt;}
._bd{margin-left:-6.726773pt;}
._e{margin-left:-5.352732pt;}
._1{margin-left:-3.745963pt;}
._b{margin-left:-2.734548pt;}
._2{margin-left:-1.594027pt;}
._c{width:0.897445pt;}
._5{width:2.104113pt;}
._9{width:3.217025pt;}
._d{width:4.468054pt;}
._f{width:9.212243pt;}
._8{width:10.495852pt;}
._3{width:12.247403pt;}
._a{width:13.381829pt;}
._6{width:14.649088pt;}
._27{width:15.582074pt;}
._7{width:16.744428pt;}
._26{width:18.203724pt;}
._1c{width:19.890998pt;}
._1d{width:21.424310pt;}
._3c{width:22.469343pt;}
._21{width:24.132275pt;}
._29{width:25.298312pt;}
._12{width:26.430484pt;}
._39{width:27.762293pt;}
._28{width:28.749225pt;}
._38{width:30.717735pt;}
._1b{width:32.397566pt;}
._3a{width:33.602663pt;}
._2d{width:34.516263pt;}
._1e{width:35.709799pt;}
._33{width:36.763314pt;}
._1f{width:37.859995pt;}
._1a{width:39.398640pt;}
._18{width:40.916835pt;}
._2e{width:42.677807pt;}
._25{width:44.145903pt;}
._30{width:46.536934pt;}
._23{width:47.465603pt;}
._15{width:49.211193pt;}
._2c{width:50.590541pt;}
._2b{width:51.700397pt;}
._32{width:52.609790pt;}
._19{width:53.829743pt;}
._16{width:55.389137pt;}
._24{width:57.206691pt;}
._3b{width:61.235338pt;}
._7c{width:63.733738pt;}
._36{width:68.565767pt;}
._a3{width:82.398950pt;}
._34{width:83.709745pt;}
._37{width:84.715737pt;}
._65{width:86.251071pt;}
._35{width:89.015285pt;}
._e4{width:90.437738pt;}
._bf{width:92.421738pt;}
._95{width:94.747071pt;}
._67{width:122.926050pt;}
._da{width:124.036966pt;}
._45{width:125.760405pt;}
._42{width:144.425617pt;}
._92{width:147.285738pt;}
._72{width:150.251071pt;}
._56{width:152.693738pt;}
._5e{width:153.861738pt;}
._4e{width:156.768405pt;}
._86{width:164.142950pt;}
._8f{width:165.950950pt;}
._43{width:166.998580pt;}
._53{width:171.358950pt;}
._5c{width:172.526950pt;}
._4b{width:175.433617pt;}
._87{width:186.958989pt;}
._90{width:188.523914pt;}
._63{width:189.753656pt;}
._a4{width:192.718989pt;}
._54{width:194.174989pt;}
._5d{width:195.099914pt;}
._4c{width:198.249656pt;}
._7e{width:205.546846pt;}
._bc{width:215.359486pt;}
._6f{width:257.876284pt;}
._70{width:280.692323pt;}
._e7{width:306.120316pt;}
._f2{width:307.341650pt;}
._e6{width:309.320316pt;}
._ec{width:310.482983pt;}
._f5{width:311.416316pt;}
._7a{width:328.252206pt;}
._ed{width:337.128316pt;}
._44{width:360.303459pt;}
._77{width:363.417292pt;}
._79{width:380.462181pt;}
._91{width:381.828792pt;}
._64{width:383.106368pt;}
._a5{width:385.780792pt;}
._55{width:387.527701pt;}
._be{width:388.986125pt;}
._4d{width:391.602368pt;}
._7d{width:406.903734pt;}
._81{width:415.278747pt;}
._76{width:443.298597pt;}
._68{width:448.976600pt;}
._69{width:459.008598pt;}
._71{width:474.045035pt;}
._e3{width:495.209656pt;}
._80{width:496.442445pt;}
._7b{width:512.617485pt;}
._41{width:530.555550pt;}
._75{width:540.406531pt;}
._b0{width:543.724833pt;}
._93{width:549.430127pt;}
._85{width:550.389247pt;}
._8e{width:552.080883pt;}
._62{width:553.183914pt;}
._a2{width:556.149247pt;}
._52{width:557.605247pt;}
._5b{width:558.656883pt;}
._4a{width:561.679914pt;}
._78{width:574.364072pt;}
._6a{width:585.613138pt;}
._74{width:589.919299pt;}
._66{width:606.886186pt;}
._9d{width:613.927573pt;}
._d8{width:633.711009pt;}
._6e{width:644.122580pt;}
._7f{width:665.092751pt;}
._9b{width:689.203153pt;}
._ae{width:697.769262pt;}
._99{width:722.283120pt;}
._c2{width:723.772196pt;}
._c0{width:724.934862pt;}
._46{width:725.948578pt;}
._c4{width:727.846862pt;}
._9e{width:729.974356pt;}
._b3{width:734.035321pt;}
._ba{width:735.779321pt;}
._b4{width:741.459483pt;}
._d9{width:743.458999pt;}
._b6{width:745.880817pt;}
._bb{width:746.872817pt;}
._a8{width:749.254862pt;}
._c3{width:754.785529pt;}
._57{width:756.964846pt;}
._8b{width:762.317578pt;}
._9a{width:767.126168pt;}
._cf{width:771.236650pt;}
._b7{width:772.472817pt;}
._c9{width:776.532650pt;}
._ef{width:778.720452pt;}
._f1{width:779.824452pt;}
._f0{width:783.605786pt;}
._f3{width:785.819119pt;}
._40{width:787.451607pt;}
._a7{width:793.499137pt;}
._c1{width:799.931286pt;}
._84{width:807.227123pt;}
._8d{width:808.976941pt;}
._61{width:810.021789pt;}
._a1{width:812.987123pt;}
._51{width:814.443123pt;}
._5a{width:815.552941pt;}
._49{width:818.517789pt;}
._96{width:820.260413pt;}
._a9{width:821.691286pt;}
._97{width:827.137218pt;}
._dd{width:829.223005pt;}
._e5{width:836.320500pt;}
._d5{width:837.889953pt;}
._e9{width:840.043167pt;}
._eb{width:841.205834pt;}
._cd{width:843.303286pt;}
._ea{width:847.814022pt;}
._94{width:850.028325pt;}
._e8{width:856.603356pt;}
._e2{width:858.639914pt;}
._c7{width:863.258852pt;}
._ee{width:867.328500pt;}
._b9{width:871.030500pt;}
._b5{width:872.193167pt;}
._8a{width:875.132143pt;}
._89{width:876.935781pt;}
._3f{width:879.297659pt;}
._de{width:880.807205pt;}
._d7{width:890.158601pt;}
._d6{width:895.028888pt;}
._83{width:899.131356pt;}
._6d{width:900.960456pt;}
._60{width:901.926022pt;}
._a0{width:904.891356pt;}
._50{width:906.347356pt;}
._59{width:907.398992pt;}
._48{width:910.422022pt;}
._dc{width:916.294774pt;}
._ce{width:920.487485pt;}
._88{width:933.906177pt;}
._b1{width:939.859649pt;}
._db{width:946.317124pt;}
._9c{width:948.377516pt;}
._cc{width:959.373690pt;}
._d4{width:960.477690pt;}
._d1{width:963.736357pt;}
._8c{width:969.444667pt;}
._ca{width:972.352607pt;}
._3e{width:974.447334pt;}
._d3{width:975.631967pt;}
._ac{width:983.146957pt;}
._6c{width:992.864689pt;}
._82{width:994.222849pt;}
._5f{width:997.017516pt;}
._9f{width:999.924667pt;}
._4f{width:1001.438849pt;}
._58{width:1002.548667pt;}
._47{width:1005.513516pt;}
._cb{width:1010.957890pt;}
._d0{width:1012.701890pt;}
._b2{width:1016.801591pt;}
._c6{width:1019.280295pt;}
._ad{width:1023.585753pt;}
._c5{width:1052.077846pt;}
._af{width:1066.921678pt;}
._6b{width:1087.956182pt;}
._e1{width:1115.477789pt;}
._e0{width:1207.382022pt;}
._df{width:1302.473516pt;}
._17{width:1306.773920pt;}
._10{width:1386.049317pt;}
._b8{width:1558.310940pt;}
._c8{width:1561.340273pt;}
._d2{width:1562.561606pt;}
._98{width:1563.782940pt;}
._f4{width:1565.585606pt;}
._aa{width:1566.806940pt;}
._ab{width:1568.028273pt;}
._a6{width:1569.249606pt;}
._2f{width:1587.404273pt;}
._3d{width:1590.428273pt;}
._73{width:1591.649606pt;}
._2a{width:1685.860936pt;}
._22{width:1719.244988pt;}
._31{width:1811.615066pt;}
._14{width:1890.134538pt;}
._11{width:2006.055932pt;}
.fs4{font-size:37.333333pt;}
.fs3{font-size:53.333333pt;}
.fs1{font-size:56.000000pt;}
.fsa{font-size:58.181867pt;}
.fs9{font-size:58.447467pt;}
.fsd{font-size:63.761067pt;}
.fs0{font-size:64.000000pt;}
.fsc{font-size:76.513067pt;}
.fs7{font-size:79.701333pt;}
.fs2{font-size:90.666667pt;}
.fs6{font-size:111.581333pt;}
.fsb{font-size:132.197867pt;}
.fs8{font-size:170.028800pt;}
.fs5{font-size:653.549333pt;}
.y0{bottom:0.000000pt;}
.yae{bottom:54.673333pt;}
.y7b{bottom:54.673353pt;}
.y46{bottom:59.729926pt;}
.y4{bottom:86.333337pt;}
.y45{bottom:95.860593pt;}
.y161{bottom:113.484000pt;}
.y23f{bottom:113.818667pt;}
.y44{bottom:113.925926pt;}
.y29e{bottom:114.349333pt;}
.y11d{bottom:121.814667pt;}
.y16d{bottom:121.932000pt;}
.y193{bottom:121.986667pt;}
.y1f{bottom:123.790666pt;}
.y7a{bottom:127.132004pt;}
.y1af{bottom:127.828000pt;}
.y1c7{bottom:127.882667pt;}
.yff{bottom:127.914667pt;}
.y263{bottom:128.694667pt;}
.y215{bottom:129.380000pt;}
.y2b8{bottom:129.560000pt;}
.y1d8{bottom:130.381333pt;}
.y4c{bottom:131.452019pt;}
.y160{bottom:131.549333pt;}
.yad{bottom:131.725333pt;}
.y23e{bottom:131.884000pt;}
.y43{bottom:131.991259pt;}
.y29d{bottom:132.414667pt;}
.y1f6{bottom:136.277333pt;}
.y27b{bottom:137.142667pt;}
.y25{bottom:137.408000pt;}
.y11c{bottom:139.880000pt;}
.y13a{bottom:139.998667pt;}
.y192{bottom:140.052000pt;}
.y284{bottom:140.864000pt;}
.y79{bottom:145.197337pt;}
.y1ae{bottom:145.893333pt;}
.y1c6{bottom:145.948000pt;}
.yfe{bottom:145.980000pt;}
.y262{bottom:146.760000pt;}
.y2b7{bottom:147.625333pt;}
.y214{bottom:147.977333pt;}
.y15f{bottom:149.614667pt;}
.yac{bottom:149.792000pt;}
.y23d{bottom:149.949333pt;}
.y42{bottom:150.056593pt;}
.y29c{bottom:150.481333pt;}
.y1a4{bottom:154.342667pt;}
.y11b{bottom:157.945333pt;}
.y139{bottom:158.064000pt;}
.y191{bottom:158.117333pt;}
.y283{bottom:158.929333pt;}
.y78{bottom:163.262671pt;}
.y1cd{bottom:163.960000pt;}
.y1c5{bottom:164.013333pt;}
.yfd{bottom:164.045333pt;}
.y261{bottom:164.825333pt;}
.y2b6{bottom:165.692000pt;}
.y15e{bottom:167.680000pt;}
.yab{bottom:167.857333pt;}
.y23c{bottom:168.014667pt;}
.y41{bottom:168.123259pt;}
.y29b{bottom:168.546667pt;}
.y16{bottom:175.052000pt;}
.y11a{bottom:176.010667pt;}
.y138{bottom:176.129333pt;}
.y190{bottom:176.182667pt;}
.y282{bottom:176.994667pt;}
.y2c4{bottom:177.861333pt;}
.y77{bottom:181.328004pt;}
.y1e6{bottom:182.025333pt;}
.y1c4{bottom:182.078667pt;}
.yfc{bottom:182.110667pt;}
.y260{bottom:182.890667pt;}
.y2b5{bottom:183.757333pt;}
.y15d{bottom:185.745333pt;}
.yaa{bottom:185.922667pt;}
.y23b{bottom:186.080000pt;}
.y1e{bottom:186.238666pt;}
.y15{bottom:186.252002pt;}
.y29a{bottom:186.612000pt;}
.y1d7{bottom:188.298667pt;}
.y1ad{bottom:190.473333pt;}
.y119{bottom:194.077333pt;}
.y137{bottom:194.194667pt;}
.y18f{bottom:194.249333pt;}
.y27a{bottom:195.061333pt;}
.y2c3{bottom:195.926667pt;}
.y1d{bottom:197.438668pt;}
.y14{bottom:197.452004pt;}
.y76{bottom:199.393337pt;}
.y1e5{bottom:200.090667pt;}
.y1c3{bottom:200.144000pt;}
.yfb{bottom:200.177333pt;}
.y25f{bottom:200.956000pt;}
.y2b4{bottom:201.822667pt;}
.y174{bottom:202.644000pt;}
.y213{bottom:203.644000pt;}
.y40{bottom:203.697926pt;}
.y15c{bottom:203.812000pt;}
.ya9{bottom:203.988000pt;}
.y23a{bottom:204.146667pt;}
.y299{bottom:204.677333pt;}
.y1d6{bottom:206.365333pt;}
.y1cc{bottom:208.540000pt;}
.y1c{bottom:208.638670pt;}
.y13{bottom:208.651996pt;}
.y26f{bottom:209.405333pt;}
.y118{bottom:212.142667pt;}
.y136{bottom:212.260000pt;}
.y18e{bottom:212.314667pt;}
.y279{bottom:213.126667pt;}
.y2c2{bottom:213.992000pt;}
.y1f4{bottom:215.981333pt;}
.y75{bottom:217.460004pt;}
.y1e4{bottom:218.156000pt;}
.yfa{bottom:218.242667pt;}
.y25e{bottom:219.022667pt;}
.y2b3{bottom:219.888000pt;}
.y212{bottom:221.710667pt;}
.y15b{bottom:221.877333pt;}
.ya8{bottom:222.053333pt;}
.y239{bottom:222.212000pt;}
.y298{bottom:222.742667pt;}
.y1d5{bottom:224.430667pt;}
.y1d0{bottom:226.658667pt;}
.y117{bottom:230.208000pt;}
.y135{bottom:230.326667pt;}
.y18d{bottom:230.380000pt;}
.y1b{bottom:231.038664pt;}
.y12{bottom:231.052000pt;}
.y278{bottom:231.192000pt;}
.y2c1{bottom:232.058667pt;}
.y1f3{bottom:234.046667pt;}
.y74{bottom:235.525337pt;}
.yf9{bottom:236.308000pt;}
.y25d{bottom:237.088000pt;}
.y2b2{bottom:237.953333pt;}
.y1ea{bottom:238.774667pt;}
.y211{bottom:239.776000pt;}
.y3f{bottom:239.845393pt;}
.y15a{bottom:239.942667pt;}
.ya7{bottom:240.120000pt;}
.y238{bottom:240.277333pt;}
.y297{bottom:240.808000pt;}
.y1a{bottom:242.238666pt;}
.y11{bottom:242.252002pt;}
.y1d4{bottom:242.496000pt;}
.y1c2{bottom:244.725333pt;}
.y116{bottom:248.273333pt;}
.y134{bottom:248.392000pt;}
.y18c{bottom:248.445333pt;}
.y277{bottom:249.257333pt;}
.y2c0{bottom:250.124000pt;}
.y1f2{bottom:252.112000pt;}
.y19{bottom:253.438668pt;}
.y10{bottom:253.451999pt;}
.y73{bottom:253.590671pt;}
.yf8{bottom:254.373333pt;}
.y210{bottom:257.841333pt;}
.y3e{bottom:257.910726pt;}
.y159{bottom:258.008000pt;}
.ya6{bottom:258.185333pt;}
.y237{bottom:258.342667pt;}
.y296{bottom:258.874667pt;}
.y1cf{bottom:260.410667pt;}
.y173{bottom:260.561333pt;}
.y1e3{bottom:262.736000pt;}
.y115{bottom:266.338667pt;}
.y133{bottom:266.457333pt;}
.y18b{bottom:266.510667pt;}
.y26e{bottom:267.322667pt;}
.y2bf{bottom:268.189333pt;}
.y1f1{bottom:270.178667pt;}
.y72{bottom:271.656004pt;}
.yf7{bottom:272.438667pt;}
.y18{bottom:275.838667pt;}
.yf{bottom:275.852001pt;}
.y20f{bottom:275.906667pt;}
.y1db{bottom:276.073333pt;}
.ya5{bottom:276.250667pt;}
.y236{bottom:276.408000pt;}
.y295{bottom:276.940000pt;}
.y172{bottom:278.626667pt;}
.y25c{bottom:281.668000pt;}
.y2b1{bottom:282.533333pt;}
.y114{bottom:284.404000pt;}
.y132{bottom:284.522667pt;}
.y26d{bottom:285.389333pt;}
.y2be{bottom:286.254667pt;}
.y17{bottom:287.038667pt;}
.ye{bottom:287.052000pt;}
.y1f0{bottom:288.244000pt;}
.y71{bottom:289.721471pt;}
.yf6{bottom:290.505333pt;}
.y24{bottom:293.672000pt;}
.y20e{bottom:293.972000pt;}
.y1da{bottom:294.138667pt;}
.ya4{bottom:294.316000pt;}
.y235{bottom:294.473333pt;}
.y294{bottom:295.005333pt;}
.y171{bottom:296.692000pt;}
.y113{bottom:302.470667pt;}
.y131{bottom:302.588000pt;}
.y1c1{bottom:302.642667pt;}
.y26c{bottom:303.454667pt;}
.y2bd{bottom:304.320000pt;}
.y1ef{bottom:306.309333pt;}
.yf5{bottom:308.570667pt;}
.yd5{bottom:308.861333pt;}
.yd{bottom:309.452000pt;}
.y16c{bottom:311.037333pt;}
.y18a{bottom:311.092000pt;}
.y20d{bottom:312.037333pt;}
.y1d9{bottom:312.205333pt;}
.ya3{bottom:312.381333pt;}
.y293{bottom:313.070667pt;}
.y170{bottom:314.758667pt;}
.y112{bottom:320.536000pt;}
.y130{bottom:320.653333pt;}
.y1c0{bottom:320.708000pt;}
.y26b{bottom:321.520000pt;}
.y70{bottom:322.333337pt;}
.y2bc{bottom:322.385333pt;}
.y1ee{bottom:324.374667pt;}
.yf4{bottom:326.636000pt;}
.yd4{bottom:326.926667pt;}
.y20c{bottom:330.104000pt;}
.ya2{bottom:330.448000pt;}
.y16f{bottom:332.824000pt;}
.y23{bottom:336.178667pt;}
.y111{bottom:338.601333pt;}
.y12f{bottom:338.720000pt;}
.y1bf{bottom:338.773333pt;}
.y234{bottom:339.054667pt;}
.y25b{bottom:339.585333pt;}
.y6f{bottom:340.398671pt;}
.y2b0{bottom:340.452000pt;}
.y1ed{bottom:342.440000pt;}
.yc{bottom:343.809333pt;}
.yf3{bottom:344.701333pt;}
.yd3{bottom:344.993333pt;}
.y1a6{bottom:347.168000pt;}
.y20b{bottom:348.169333pt;}
.ya1{bottom:348.513333pt;}
.y16e{bottom:350.889333pt;}
.y110{bottom:356.666667pt;}
.y12e{bottom:356.785333pt;}
.y1be{bottom:356.838667pt;}
.y233{bottom:357.650667pt;}
.y6e{bottom:358.464004pt;}
.y2af{bottom:358.517333pt;}
.y158{bottom:360.505333pt;}
.yb{bottom:362.706666pt;}
.yf2{bottom:362.766667pt;}
.yd2{bottom:363.058667pt;}
.y20a{bottom:366.234667pt;}
.ya0{bottom:366.578667pt;}
.y16b{bottom:368.954667pt;}
.y189{bottom:369.009333pt;}
.y10f{bottom:374.732000pt;}
.y12d{bottom:374.850667pt;}
.y1bd{bottom:374.904000pt;}
.y25a{bottom:375.716000pt;}
.y2c7{bottom:376.248000pt;}
.y6d{bottom:376.529337pt;}
.y2ae{bottom:376.582667pt;}
.y157{bottom:378.572000pt;}
.yf1{bottom:380.832000pt;}
.yd1{bottom:381.124000pt;}
.y1b0{bottom:383.300000pt;}
.y209{bottom:384.300000pt;}
.y9f{bottom:384.644000pt;}
.y16a{bottom:387.020000pt;}
.y188{bottom:387.074667pt;}
.y10e{bottom:392.798667pt;}
.y12c{bottom:392.916000pt;}
.y1bc{bottom:392.970667pt;}
.y259{bottom:393.782667pt;}
.y6c{bottom:394.594671pt;}
.y2ad{bottom:394.648000pt;}
.y156{bottom:396.637333pt;}
.yf0{bottom:398.898667pt;}
.yd0{bottom:399.189333pt;}
.y1f5{bottom:401.365333pt;}
.y281{bottom:402.230667pt;}
.y208{bottom:402.365333pt;}
.y9e{bottom:402.709333pt;}
.y3d{bottom:404.184019pt;}
.y169{bottom:405.086667pt;}
.y187{bottom:405.140000pt;}
.y10d{bottom:410.864000pt;}
.y1a3{bottom:410.981333pt;}
.y1bb{bottom:411.036000pt;}
.y258{bottom:411.848000pt;}
.y6b{bottom:412.661337pt;}
.y2ac{bottom:412.713333pt;}
.y232{bottom:414.170667pt;}
.y155{bottom:414.702667pt;}
.y292{bottom:415.568000pt;}
.yef{bottom:416.964000pt;}
.ycf{bottom:417.254667pt;}
.y216{bottom:419.430667pt;}
.y207{bottom:420.432000pt;}
.y9d{bottom:420.776000pt;}
.y3c{bottom:422.249353pt;}
.y168{bottom:423.152000pt;}
.y186{bottom:423.205333pt;}
.y10c{bottom:428.929333pt;}
.y1e2{bottom:429.046667pt;}
.y1a2{bottom:429.048000pt;}
.y1ba{bottom:429.101333pt;}
.y257{bottom:429.913333pt;}
.y6a{bottom:430.726671pt;}
.y2ab{bottom:430.780000pt;}
.y231{bottom:432.237333pt;}
.y154{bottom:432.768000pt;}
.y291{bottom:433.634667pt;}
.yee{bottom:435.029333pt;}
.yce{bottom:435.321333pt;}
.y12b{bottom:437.496000pt;}
.y9c{bottom:438.841333pt;}
.y2bb{bottom:439.228000pt;}
.y3b{bottom:440.316019pt;}
.y167{bottom:441.217333pt;}
.y185{bottom:441.270667pt;}
.y1a1{bottom:447.113333pt;}
.y1b9{bottom:447.166667pt;}
.y256{bottom:447.978667pt;}
.y69{bottom:448.792004pt;}
.y2aa{bottom:448.845333pt;}
.y230{bottom:450.302667pt;}
.y153{bottom:450.833333pt;}
.y290{bottom:451.700000pt;}
.yed{bottom:453.094667pt;}
.ycd{bottom:453.386667pt;}
.y1e8{bottom:455.561333pt;}
.y276{bottom:456.428000pt;}
.y9b{bottom:456.906667pt;}
.y2ba{bottom:457.825333pt;}
.y166{bottom:459.282667pt;}
.y184{bottom:459.337333pt;}
.y280{bottom:460.149333pt;}
.y206{bottom:461.572000pt;}
.ya{bottom:462.990669pt;}
.y1a0{bottom:465.178667pt;}
.y1b8{bottom:465.232000pt;}
.y255{bottom:466.044000pt;}
.y68{bottom:466.857337pt;}
.y2a9{bottom:466.910667pt;}
.y22f{bottom:468.368000pt;}
.y152{bottom:468.900000pt;}
.y28f{bottom:469.765333pt;}
.yec{bottom:471.160000pt;}
.ycc{bottom:471.452000pt;}
.y10b{bottom:473.509333pt;}
.y1c9{bottom:473.628000pt;}
.y9a{bottom:474.972000pt;}
.y165{bottom:477.348000pt;}
.y183{bottom:477.402667pt;}
.y27f{bottom:478.214667pt;}
.y9{bottom:478.990666pt;}
.y205{bottom:480.169333pt;}
.y1ac{bottom:483.244000pt;}
.y1b7{bottom:483.298667pt;}
.y254{bottom:484.110667pt;}
.y67{bottom:484.922671pt;}
.y2a8{bottom:484.976000pt;}
.y1d3{bottom:485.797333pt;}
.y22e{bottom:486.433333pt;}
.y151{bottom:486.965333pt;}
.y28e{bottom:487.830667pt;}
.ycb{bottom:489.517333pt;}
.y1cb{bottom:491.693333pt;}
.y99{bottom:493.037333pt;}
.y8{bottom:494.990666pt;}
.y12a{bottom:495.413333pt;}
.y182{bottom:495.468000pt;}
.y27e{bottom:496.280000pt;}
.y1ab{bottom:501.309333pt;}
.y1b6{bottom:501.364000pt;}
.y253{bottom:502.176000pt;}
.y66{bottom:502.989337pt;}
.y2a7{bottom:503.041333pt;}
.y22d{bottom:504.498667pt;}
.y150{bottom:505.030667pt;}
.y28d{bottom:505.896000pt;}
.yca{bottom:507.582667pt;}
.y19f{bottom:509.758667pt;}
.y98{bottom:511.104000pt;}
.y129{bottom:513.480000pt;}
.y181{bottom:513.533333pt;}
.y275{bottom:514.345333pt;}
.yeb{bottom:515.741333pt;}
.y1e1{bottom:519.374667pt;}
.y3a{bottom:519.845353pt;}
.y252{bottom:520.241333pt;}
.y65{bottom:521.054671pt;}
.y2a6{bottom:521.106667pt;}
.y1e9{bottom:521.928000pt;}
.y22c{bottom:522.565333pt;}
.y14f{bottom:523.096000pt;}
.y28c{bottom:523.962667pt;}
.yc9{bottom:525.649333pt;}
.y26a{bottom:528.690667pt;}
.y97{bottom:529.169333pt;}
.y10a{bottom:531.426667pt;}
.y128{bottom:531.545333pt;}
.y180{bottom:531.598667pt;}
.y274{bottom:532.410667pt;}
.y204{bottom:535.837333pt;}
.y1e0{bottom:537.441333pt;}
.y39{bottom:537.910686pt;}
.y251{bottom:538.306667pt;}
.y64{bottom:539.120004pt;}
.y2a5{bottom:539.173333pt;}
.y22b{bottom:540.630667pt;}
.y14e{bottom:541.161333pt;}
.y28b{bottom:542.028000pt;}
.yc8{bottom:543.714667pt;}
.y1aa{bottom:545.889333pt;}
.y1b5{bottom:545.944000pt;}
.y96{bottom:547.234667pt;}
.y2b9{bottom:547.286667pt;}
.yea{bottom:549.492000pt;}
.y127{bottom:549.610667pt;}
.y17f{bottom:549.665333pt;}
.y273{bottom:550.477333pt;}
.y203{bottom:553.902667pt;}
.y1df{bottom:555.506667pt;}
.y38{bottom:555.977353pt;}
.y250{bottom:556.372000pt;}
.y63{bottom:557.185337pt;}
.y2a4{bottom:557.238667pt;}
.y22a{bottom:558.696000pt;}
.y14d{bottom:559.226667pt;}
.y28a{bottom:560.093333pt;}
.yc7{bottom:561.780000pt;}
.y95{bottom:565.300000pt;}
.y109{bottom:567.558667pt;}
.y126{bottom:567.676000pt;}
.y17e{bottom:567.730667pt;}
.y272{bottom:568.542667pt;}
.y202{bottom:571.968000pt;}
.y1de{bottom:573.572000pt;}
.y7{bottom:573.786667pt;}
.y37{bottom:574.042686pt;}
.y62{bottom:575.250671pt;}
.y164{bottom:576.125333pt;}
.y229{bottom:576.761333pt;}
.y14c{bottom:577.293333pt;}
.y289{bottom:578.158667pt;}
.y1b4{bottom:579.696000pt;}
.yc6{bottom:579.845333pt;}
.y1d2{bottom:579.846667pt;}
.y94{bottom:583.365333pt;}
.y108{bottom:585.624000pt;}
.y125{bottom:585.741333pt;}
.y17d{bottom:585.796000pt;}
.y269{bottom:586.608000pt;}
.y201{bottom:590.033333pt;}
.y36{bottom:592.108019pt;}
.y6{bottom:592.685334pt;}
.y61{bottom:593.317337pt;}
.y228{bottom:594.826667pt;}
.y199{bottom:595.358667pt;}
.y288{bottom:596.224000pt;}
.yc5{bottom:597.910667pt;}
.y1d1{bottom:597.912000pt;}
.y24f{bottom:600.952000pt;}
.y93{bottom:601.432000pt;}
.y2a3{bottom:601.818667pt;}
.y107{bottom:603.689333pt;}
.y124{bottom:603.808000pt;}
.y17c{bottom:603.861333pt;}
.y268{bottom:604.673333pt;}
.y200{bottom:608.098667pt;}
.ye9{bottom:609.908000pt;}
.y35{bottom:610.173353pt;}
.y60{bottom:611.382671pt;}
.y227{bottom:612.892000pt;}
.y198{bottom:613.424000pt;}
.y287{bottom:614.289333pt;}
.yc4{bottom:615.977333pt;}
.y1dd{bottom:618.152000pt;}
.y92{bottom:619.497333pt;}
.y2a2{bottom:620.416000pt;}
.y106{bottom:621.754667pt;}
.y123{bottom:621.873333pt;}
.y17b{bottom:621.926667pt;}
.y267{bottom:622.738667pt;}
.y1ff{bottom:626.165333pt;}
.ye8{bottom:627.973333pt;}
.y34{bottom:628.238686pt;}
.y5f{bottom:629.448004pt;}
.y226{bottom:630.958667pt;}
.y2c6{bottom:631.489333pt;}
.y286{bottom:632.356000pt;}
.yc3{bottom:634.042667pt;}
.y4b{bottom:636.796019pt;}
.y91{bottom:637.562667pt;}
.y105{bottom:639.820000pt;}
.y122{bottom:639.938667pt;}
.y17a{bottom:639.992000pt;}
.y266{bottom:640.804000pt;}
.y1ec{bottom:643.660000pt;}
.y1fe{bottom:644.230667pt;}
.y5{bottom:645.598667pt;}
.ye7{bottom:646.038667pt;}
.y33{bottom:646.305353pt;}
.y5e{bottom:647.513337pt;}
.y2c5{bottom:649.554667pt;}
.yc2{bottom:652.108000pt;}
.y90{bottom:655.628000pt;}
.y104{bottom:657.885333pt;}
.y121{bottom:658.004000pt;}
.y179{bottom:658.058667pt;}
.y24e{bottom:658.870667pt;}
.y1eb{bottom:661.725333pt;}
.y1fd{bottom:662.296000pt;}
.ye6{bottom:664.104000pt;}
.y3{bottom:668.977329pt;}
.yc1{bottom:670.173333pt;}
.y4a{bottom:672.926686pt;}
.y8f{bottom:673.693333pt;}
.y225{bottom:675.538667pt;}
.y103{bottom:675.952000pt;}
.y120{bottom:676.069333pt;}
.y178{bottom:676.124000pt;}
.y24d{bottom:676.936000pt;}
.y2d6{bottom:677.016000pt;}
.y14b{bottom:679.790667pt;}
.y5d{bottom:680.124004pt;}
.y1fc{bottom:680.361333pt;}
.ye5{bottom:682.169333pt;}
.yc0{bottom:688.238667pt;}
.y163{bottom:688.240000pt;}
.y8e{bottom:691.760000pt;}
.y102{bottom:694.017333pt;}
.y11f{bottom:694.134667pt;}
.y177{bottom:694.189333pt;}
.y24c{bottom:695.001333pt;}
.y2d5{bottom:695.081333pt;}
.y285{bottom:695.532000pt;}
.y14a{bottom:697.856000pt;}
.y5c{bottom:698.190671pt;}
.y1fb{bottom:698.426667pt;}
.ye4{bottom:700.236000pt;}
.y1a5{bottom:702.584000pt;}
.ybf{bottom:706.305333pt;}
.y8d{bottom:709.825333pt;}
.y197{bottom:712.201333pt;}
.y24b{bottom:713.066667pt;}
.y2d4{bottom:713.146667pt;}
.y149{bottom:715.921333pt;}
.y5b{bottom:716.256004pt;}
.y1fa{bottom:716.492000pt;}
.ye3{bottom:718.301333pt;}
.y27d{bottom:721.516000pt;}
.y32{bottom:724.352574pt;}
.ybe{bottom:724.370667pt;}
.y49{bottom:727.124019pt;}
.y8c{bottom:727.890667pt;}
.y196{bottom:730.266667pt;}
.y24a{bottom:731.132000pt;}
.y2d3{bottom:731.212000pt;}
.y224{bottom:733.456000pt;}
.y148{bottom:733.986667pt;}
.y5a{bottom:734.321337pt;}
.y1f9{bottom:734.558667pt;}
.ye2{bottom:736.366667pt;}
.y101{bottom:738.597333pt;}
.y11e{bottom:738.716000pt;}
.y176{bottom:738.769333pt;}
.y27c{bottom:740.113333pt;}
.ybd{bottom:742.436000pt;}
.y8b{bottom:745.956000pt;}
.y195{bottom:748.332000pt;}
.y249{bottom:749.198667pt;}
.y2d2{bottom:749.277333pt;}
.y223{bottom:751.521333pt;}
.y147{bottom:752.053333pt;}
.y59{bottom:752.386671pt;}
.y1f8{bottom:752.624000pt;}
.ye1{bottom:754.432000pt;}
.y1e7{bottom:756.781333pt;}
.y31{bottom:760.484574pt;}
.ybc{bottom:760.501333pt;}
.y8a{bottom:764.021333pt;}
.y19e{bottom:766.397333pt;}
.y48{bottom:766.973353pt;}
.y248{bottom:767.264000pt;}
.y2d1{bottom:767.342667pt;}
.y222{bottom:769.586667pt;}
.y146{bottom:770.118667pt;}
.y58{bottom:770.452004pt;}
.y22{bottom:771.876000pt;}
.y100{bottom:772.349333pt;}
.ye0{bottom:772.497333pt;}
.y175{bottom:772.521333pt;}
.y1ca{bottom:774.846667pt;}
.y271{bottom:775.712000pt;}
.y30{bottom:778.551241pt;}
.ybb{bottom:778.566667pt;}
.y162{bottom:778.568000pt;}
.y2{bottom:781.661334pt;}
.y89{bottom:782.088000pt;}
.y19d{bottom:784.462667pt;}
.y247{bottom:785.329333pt;}
.y2d0{bottom:785.409333pt;}
.y221{bottom:787.652000pt;}
.y145{bottom:788.184000pt;}
.y57{bottom:788.518671pt;}
.ydf{bottom:790.562667pt;}
.y194{bottom:792.912000pt;}
.y1f7{bottom:793.765333pt;}
.y270{bottom:794.309333pt;}
.y2f{bottom:796.616574pt;}
.yba{bottom:796.633333pt;}
.y88{bottom:800.153333pt;}
.y19c{bottom:802.529333pt;}
.y246{bottom:803.394667pt;}
.y2cf{bottom:803.474667pt;}
.y220{bottom:805.718667pt;}
.y144{bottom:806.249333pt;}
.y56{bottom:806.584004pt;}
.yde{bottom:808.629333pt;}
.y2e{bottom:814.681907pt;}
.yb9{bottom:814.698667pt;}
.y87{bottom:818.218667pt;}
.y19b{bottom:820.594667pt;}
.y245{bottom:821.460000pt;}
.y2ce{bottom:821.540000pt;}
.y21f{bottom:823.784000pt;}
.y143{bottom:824.314667pt;}
.y55{bottom:824.649337pt;}
.ydd{bottom:826.694667pt;}
.y1ce{bottom:829.042667pt;}
.y2d{bottom:832.747241pt;}
.yb8{bottom:832.764000pt;}
.y86{bottom:836.284000pt;}
.y1a9{bottom:838.660000pt;}
.y244{bottom:839.525333pt;}
.y2cd{bottom:839.605333pt;}
.y21e{bottom:841.849333pt;}
.y142{bottom:842.381333pt;}
.y54{bottom:842.714671pt;}
.ydc{bottom:844.760000pt;}
.y265{bottom:847.974667pt;}
.y2c{bottom:850.812574pt;}
.yb7{bottom:850.829333pt;}
.y85{bottom:854.349333pt;}
.y1a8{bottom:856.725333pt;}
.y243{bottom:857.592000pt;}
.y2cc{bottom:857.670667pt;}
.y1{bottom:859.312000pt;}
.y21d{bottom:859.914667pt;}
.y141{bottom:860.446667pt;}
.y53{bottom:860.780004pt;}
.ydb{bottom:862.825333pt;}
.y19a{bottom:865.174667pt;}
.y264{bottom:866.572000pt;}
.y2b{bottom:868.879241pt;}
.yb6{bottom:868.894667pt;}
.y84{bottom:872.414667pt;}
.y1b3{bottom:874.790667pt;}
.y242{bottom:875.657333pt;}
.y2cb{bottom:875.737333pt;}
.y21c{bottom:877.980000pt;}
.y140{bottom:878.512000pt;}
.y52{bottom:878.846671pt;}
.yda{bottom:880.890667pt;}
.y1c8{bottom:883.240000pt;}
.yb5{bottom:886.961333pt;}
.y83{bottom:890.481333pt;}
.y1b2{bottom:892.856000pt;}
.y2a1{bottom:893.722667pt;}
.y2ca{bottom:893.802667pt;}
.y20{bottom:894.764000pt;}
.y21b{bottom:896.046667pt;}
.y13f{bottom:896.577333pt;}
.yd9{bottom:898.957333pt;}
.y1a7{bottom:901.305333pt;}
.y21{bottom:902.322667pt;}
.yb4{bottom:905.026667pt;}
.y2a{bottom:905.026707pt;}
.y82{bottom:908.546667pt;}
.y51{bottom:911.457337pt;}
.y21a{bottom:914.112000pt;}
.y13e{bottom:914.642667pt;}
.yd8{bottom:917.022667pt;}
.y1dc{bottom:919.370667pt;}
.y241{bottom:920.237333pt;}
.yb3{bottom:923.092000pt;}
.y29{bottom:923.092041pt;}
.y81{bottom:926.612000pt;}
.y50{bottom:929.522671pt;}
.y219{bottom:932.177333pt;}
.y13d{bottom:932.708000pt;}
.yd7{bottom:935.088000pt;}
.y1b1{bottom:937.437333pt;}
.y2a0{bottom:938.302667pt;}
.y2c9{bottom:938.382667pt;}
.y240{bottom:938.834667pt;}
.yb2{bottom:941.157333pt;}
.y80{bottom:944.677333pt;}
.y218{bottom:950.242667pt;}
.y13c{bottom:950.774667pt;}
.y29f{bottom:956.900000pt;}
.y2c8{bottom:956.980000pt;}
.yb1{bottom:959.222667pt;}
.y4f{bottom:962.133337pt;}
.y7f{bottom:962.742667pt;}
.y13b{bottom:968.840000pt;}
.y28{bottom:977.272537pt;}
.yb0{bottom:977.289333pt;}
.yd6{bottom:979.668000pt;}
.y4e{bottom:980.200004pt;}
.y7e{bottom:980.809333pt;}
.y217{bottom:994.822667pt;}
.yaf{bottom:995.354667pt;}
.y27{bottom:995.354670pt;}
.y47{bottom:995.801351pt;}
.y7d{bottom:1013.420000pt;}
.y26{bottom:1013.420003pt;}
.y7c{bottom:1060.573333pt;}
.y4d{bottom:1060.573353pt;}
.h7{height:28.560000pt;}
.h6{height:40.800000pt;}
.h12{height:42.181853pt;}
.he{height:42.414581pt;}
.h15{height:42.419914pt;}
.hd{height:42.608203pt;}
.h3{height:42.840000pt;}
.h10{height:42.880036pt;}
.h13{height:42.996399pt;}
.h17{height:43.315914pt;}
.h16{height:43.550581pt;}
.h18{height:43.779914pt;}
.h14{height:46.481818pt;}
.h2{height:48.960000pt;}
.h11{height:55.471973pt;}
.hb{height:57.783467pt;}
.h5{height:69.360000pt;}
.ha{height:80.896467pt;}
.hf{height:95.843453pt;}
.h4{height:105.826671pt;}
.hc{height:123.270880pt;}
.h9{height:435.263856pt;}
.h0{height:1122.518667pt;}
.h8{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w2{width:566.928019pt;}
.w0{width:793.700000pt;}
.w3{width:793.706667pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x7{left:75.590667pt;}
.x8{left:77.480000pt;}
.x1{left:90.706667pt;}
.x2{left:94.486667pt;}
.x9{left:119.056000pt;}
.xe{left:127.026667pt;}
.x13{left:128.190667pt;}
.xd{left:129.688000pt;}
.x18{left:132.161333pt;}
.x17{left:133.092000pt;}
.x16{left:134.778667pt;}
.xb{left:140.874533pt;}
.xf{left:148.597333pt;}
.x15{left:149.572000pt;}
.x12{left:164.858667pt;}
.x11{left:166.212000pt;}
.x14{left:170.924000pt;}
.x10{left:172.612000pt;}
.xc{left:174.329333pt;}
.x4{left:180.874667pt;}
.xa{left:370.978679pt;}
.x3{left:404.408000pt;}
.x5{left:430.458667pt;}
.x6{left:740.397333pt;}
}




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