
    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_794c9ab5d3710df45c4b6d58.woff')format("woff");}.ff1{font-family:ff1;line-height:1.230957;font-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_6b4b6f0ac996c91a1c1d0437.woff')format("woff");}.ff2{font-family:ff2;line-height:0.922852;font-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_ab0aa97371a85da805046019.woff')format("woff");}.ff3{font-family:ff3;line-height:0.922852;font-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_70f797dcefcac7e6b776078c.woff')format("woff");}.ff4{font-family:ff4;line-height:0.922852;font-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_2f4c7a642a4e20be4d8a0e86.woff')format("woff");}.ff5{font-family:ff5;line-height:1.402832;font-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_86d58bebf16e258ef7d29578.woff')format("woff");}.ff6{font-family:ff6;line-height:1.066406;font-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_cf9c0f2a7c30948f330477b6.woff')format("woff");}.ff7{font-family:ff7;line-height:1.041992;font-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_92f080fdd797d641cc0c58cc.woff')format("woff");}.ff8{font-family:ff8;line-height:1.053223;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_822ebe1698bb4f2ddf026692.woff')format("woff");}.ff9{font-family:ff9;line-height:1.099609;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{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);}
.v4{vertical-align:-20.973000px;}
.v5{vertical-align:-16.977000px;}
.v2{vertical-align:-11.982000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:17.002800px;}
.v3{vertical-align:20.973000px;}
.ls4e{letter-spacing:-9.522000px;}
.ls9a{letter-spacing:-7.245000px;}
.ls9b{letter-spacing:-6.348000px;}
.ls63{letter-spacing:-6.141000px;}
.ls52{letter-spacing:-6.072000px;}
.lsa5{letter-spacing:-5.796000px;}
.ls7b{letter-spacing:-5.727000px;}
.ls92{letter-spacing:-5.520000px;}
.ls56{letter-spacing:-5.451000px;}
.ls65{letter-spacing:-5.382000px;}
.ls89{letter-spacing:-5.244000px;}
.ls3d{letter-spacing:-4.968000px;}
.lsa4{letter-spacing:-4.485000px;}
.ls36{letter-spacing:-4.347000px;}
.lsb4{letter-spacing:-4.158000px;}
.lsb3{letter-spacing:-4.032000px;}
.lsa6{letter-spacing:-3.795000px;}
.ls51{letter-spacing:-3.657000px;}
.ls64{letter-spacing:-3.588000px;}
.ls86{letter-spacing:-3.381000px;}
.ls4c{letter-spacing:-3.174000px;}
.ls61{letter-spacing:-3.105000px;}
.ls9d{letter-spacing:-3.036000px;}
.ls5{letter-spacing:-3.024000px;}
.ls87{letter-spacing:-2.967000px;}
.ls73{letter-spacing:-2.829000px;}
.lsc8{letter-spacing:-2.772000px;}
.ls4b{letter-spacing:-2.760000px;}
.ls59{letter-spacing:-2.553000px;}
.ls71{letter-spacing:-2.484000px;}
.ls93{letter-spacing:-2.415000px;}
.ls55{letter-spacing:-2.346000px;}
.ls6d{letter-spacing:-2.277000px;}
.ls4f{letter-spacing:-2.208000px;}
.ls6c{letter-spacing:-2.139000px;}
.ls2a{letter-spacing:-2.109000px;}
.ls4a{letter-spacing:-2.070000px;}
.ls58{letter-spacing:-2.001000px;}
.ls40{letter-spacing:-1.932000px;}
.ls5d{letter-spacing:-1.863000px;}
.ls3e{letter-spacing:-1.794000px;}
.ls48{letter-spacing:-1.725000px;}
.ls62{letter-spacing:-1.656000px;}
.lsab{letter-spacing:-1.650000px;}
.ls49{letter-spacing:-1.587000px;}
.lsd0{letter-spacing:-1.560000px;}
.ls29{letter-spacing:-1.539000px;}
.ls60{letter-spacing:-1.518000px;}
.ls57{letter-spacing:-1.449000px;}
.ls99{letter-spacing:-1.425000px;}
.ls74{letter-spacing:-1.404000px;}
.ls37{letter-spacing:-1.380000px;}
.ls6{letter-spacing:-1.344000px;}
.ls43{letter-spacing:-1.311000px;}
.ls1b{letter-spacing:-1.242000px;}
.ls14{letter-spacing:-1.215000px;}
.lsc1{letter-spacing:-1.197000px;}
.ls50{letter-spacing:-1.173000px;}
.ls8c{letter-spacing:-1.134000px;}
.ls5c{letter-spacing:-1.104000px;}
.lsba{letter-spacing:-1.071000px;}
.ls4d{letter-spacing:-1.035000px;}
.lsbd{letter-spacing:-1.008000px;}
.lsad{letter-spacing:-0.972000px;}
.ls3b{letter-spacing:-0.966000px;}
.lsb5{letter-spacing:-0.945000px;}
.lsa3{letter-spacing:-0.936000px;}
.ls9c{letter-spacing:-0.925221px;}
.ls41{letter-spacing:-0.897000px;}
.lsb9{letter-spacing:-0.882000px;}
.ls13{letter-spacing:-0.855000px;}
.ls3c{letter-spacing:-0.828000px;}
.lsbf{letter-spacing:-0.819000px;}
.ls17{letter-spacing:-0.759000px;}
.ls1e{letter-spacing:-0.690000px;}
.lsd2{letter-spacing:-0.660000px;}
.lsbc{letter-spacing:-0.630000px;}
.ls21{letter-spacing:-0.627000px;}
.ls15{letter-spacing:-0.621000px;}
.ls9f{letter-spacing:-0.598158px;}
.lsac{letter-spacing:-0.570000px;}
.lsb8{letter-spacing:-0.567000px;}
.ls44{letter-spacing:-0.552000px;}
.lsce{letter-spacing:-0.540000px;}
.lsb6{letter-spacing:-0.504000px;}
.ls46{letter-spacing:-0.486000px;}
.ls3a{letter-spacing:-0.483000px;}
.lsc5{letter-spacing:-0.441000px;}
.ls1c{letter-spacing:-0.414000px;}
.lsd1{letter-spacing:-0.360000px;}
.ls39{letter-spacing:-0.345000px;}
.lse{letter-spacing:-0.300000px;}
.ls24{letter-spacing:-0.276000px;}
.lsc6{letter-spacing:-0.252000px;}
.ls88{letter-spacing:-0.241362px;}
.lsf{letter-spacing:-0.240000px;}
.ls5b{letter-spacing:-0.207000px;}
.ls28{letter-spacing:-0.171000px;}
.ls53{letter-spacing:-0.138000px;}
.ls45{letter-spacing:-0.108000px;}
.ls23{letter-spacing:-0.069000px;}
.ls8d{letter-spacing:-0.062964px;}
.ls8{letter-spacing:-0.060000px;}
.ls1{letter-spacing:0.000000px;}
.ls26{letter-spacing:0.000300px;}
.ls2d{letter-spacing:0.030000px;}
.ls38{letter-spacing:0.069000px;}
.ls6a{letter-spacing:0.096600px;}
.ls6b{letter-spacing:0.138000px;}
.ls6e{letter-spacing:0.207000px;}
.lsa0{letter-spacing:0.216000px;}
.ls8b{letter-spacing:0.236115px;}
.ls9{letter-spacing:0.240000px;}
.lsc0{letter-spacing:0.252000px;}
.ls31{letter-spacing:0.276000px;}
.ls96{letter-spacing:0.345000px;}
.lsae{letter-spacing:0.402270px;}
.ls69{letter-spacing:0.414000px;}
.lsc7{letter-spacing:0.441000px;}
.ls97{letter-spacing:0.472230px;}
.lsa{letter-spacing:0.480000px;}
.ls6f{letter-spacing:0.483000px;}
.ls7e{letter-spacing:0.552000px;}
.lsa2{letter-spacing:0.563178px;}
.lsa8{letter-spacing:0.566676px;}
.ls67{letter-spacing:0.600300px;}
.lsaf{letter-spacing:0.603405px;}
.ls8a{letter-spacing:0.621000px;}
.ls1d{letter-spacing:0.690000px;}
.lsc4{letter-spacing:0.756000px;}
.ls32{letter-spacing:0.759000px;}
.ls2b{letter-spacing:0.802791px;}
.ls5f{letter-spacing:0.828000px;}
.lscc{letter-spacing:0.840000px;}
.ls4{letter-spacing:0.882000px;}
.lsb{letter-spacing:0.900000px;}
.ls84{letter-spacing:0.925221px;}
.ls3f{letter-spacing:0.966000px;}
.ls70{letter-spacing:1.035000px;}
.ls2c{letter-spacing:1.053000px;}
.ls16{letter-spacing:1.104000px;}
.ls35{letter-spacing:1.173000px;}
.lsc2{letter-spacing:1.197000px;}
.lscd{letter-spacing:1.200000px;}
.ls1a{letter-spacing:1.207500px;}
.ls5e{letter-spacing:1.242000px;}
.ls91{letter-spacing:1.255800px;}
.ls3{letter-spacing:1.260000px;}
.ls1f{letter-spacing:1.350000px;}
.ls54{letter-spacing:1.449000px;}
.ls34{letter-spacing:1.566000px;}
.ls30{letter-spacing:1.587000px;}
.ls94{letter-spacing:1.656000px;}
.ls81{letter-spacing:1.668600px;}
.ls7a{letter-spacing:1.725000px;}
.ls22{letter-spacing:1.794000px;}
.lscf{letter-spacing:1.920000px;}
.ls27{letter-spacing:2.001300px;}
.ls5a{letter-spacing:2.070000px;}
.ls19{letter-spacing:2.345700px;}
.lsd{letter-spacing:2.400000px;}
.ls8e{letter-spacing:2.622000px;}
.lsa7{letter-spacing:2.760000px;}
.ls33{letter-spacing:3.105000px;}
.ls90{letter-spacing:3.174000px;}
.ls77{letter-spacing:3.243000px;}
.ls68{letter-spacing:3.450000px;}
.ls80{letter-spacing:3.588000px;}
.ls8f{letter-spacing:3.657000px;}
.ls10{letter-spacing:3.696000px;}
.lsca{letter-spacing:3.720000px;}
.ls85{letter-spacing:3.726000px;}
.ls83{letter-spacing:4.002000px;}
.lsb2{letter-spacing:4.176900px;}
.ls12{letter-spacing:4.200000px;}
.ls7f{letter-spacing:4.278000px;}
.ls7d{letter-spacing:4.347000px;}
.lsbe{letter-spacing:4.473000px;}
.lsb0{letter-spacing:4.485000px;}
.ls72{letter-spacing:4.830000px;}
.ls9e{letter-spacing:4.968000px;}
.ls79{letter-spacing:5.520000px;}
.ls11{letter-spacing:5.760000px;}
.ls76{letter-spacing:5.865000px;}
.ls7{letter-spacing:5.880000px;}
.lsc9{letter-spacing:5.922000px;}
.ls2{letter-spacing:6.000000px;}
.lsaa{letter-spacing:6.141000px;}
.lsc3{letter-spacing:6.237000px;}
.lsbb{letter-spacing:6.300000px;}
.ls95{letter-spacing:6.486000px;}
.lsb7{letter-spacing:6.552000px;}
.ls78{letter-spacing:7.107000px;}
.ls2f{letter-spacing:7.383000px;}
.ls82{letter-spacing:8.160156px;}
.lsa1{letter-spacing:8.160756px;}
.ls42{letter-spacing:9.039000px;}
.lsc{letter-spacing:467.557200px;}
.ls7c{letter-spacing:467.759400px;}
.ls2e{letter-spacing:468.194400px;}
.ls66{letter-spacing:468.224400px;}
.ls98{letter-spacing:468.322200px;}
.lsb1{letter-spacing:468.464400px;}
.ls20{letter-spacing:468.494400px;}
.lscb{letter-spacing:468.952200px;}
.lsa9{letter-spacing:471.014400px;}
.ls0{letter-spacing:952.522800px;}
.ls25{letter-spacing:953.017800px;}
.ls47{letter-spacing:955.642800px;}
.ls75{letter-spacing:959.692800px;}
.ls18{letter-spacing:961.672800px;}
.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:-27.324000px;}
.ws35{word-spacing:-26.082000px;}
.ws23{word-spacing:-22.761000px;}
.ws3{word-spacing:-22.740000px;}
.wsd{word-spacing:-22.620000px;}
.ws2{word-spacing:-22.260000px;}
.wsc2{word-spacing:-22.050000px;}
.wsbd{word-spacing:-21.789000px;}
.wse{word-spacing:-21.546000px;}
.ws2a{word-spacing:-21.105000px;}
.wsb5{word-spacing:-20.982000px;}
.wsb{word-spacing:-20.775000px;}
.wsd8{word-spacing:-20.580000px;}
.ws72{word-spacing:-20.079000px;}
.wsab{word-spacing:-19.650000px;}
.wsbc{word-spacing:-19.425000px;}
.ws2e{word-spacing:-19.389000px;}
.ws2d{word-spacing:-19.044000px;}
.ws86{word-spacing:-18.975000px;}
.ws89{word-spacing:-18.768000px;}
.ws87{word-spacing:-18.699000px;}
.ws76{word-spacing:-18.630000px;}
.ws36{word-spacing:-18.561000px;}
.ws4d{word-spacing:-18.492000px;}
.wsa4{word-spacing:-18.423000px;}
.wsb7{word-spacing:-18.216000px;}
.ws0{word-spacing:-18.120000px;}
.ws88{word-spacing:-18.078000px;}
.wsc3{word-spacing:-17.955000px;}
.ws8c{word-spacing:-17.457000px;}
.ws85{word-spacing:-17.388000px;}
.ws2f{word-spacing:-17.319000px;}
.ws75{word-spacing:-17.250000px;}
.ws2c{word-spacing:-17.112000px;}
.ws31{word-spacing:-17.043000px;}
.wsc4{word-spacing:-17.010000px;}
.wsae{word-spacing:-16.974000px;}
.ws4c{word-spacing:-16.905000px;}
.ws53{word-spacing:-16.698000px;}
.ws70{word-spacing:-16.629000px;}
.ws8d{word-spacing:-16.560000px;}
.ws1a{word-spacing:-16.524000px;}
.ws92{word-spacing:-16.491000px;}
.ws54{word-spacing:-16.422000px;}
.ws4f{word-spacing:-16.353000px;}
.ws8f{word-spacing:-16.284000px;}
.ws74{word-spacing:-16.215000px;}
.ws71{word-spacing:-16.146000px;}
.ws30{word-spacing:-16.077000px;}
.ws48{word-spacing:-16.008000px;}
.wsd7{word-spacing:-16.002000px;}
.ws55{word-spacing:-15.939000px;}
.ws4a{word-spacing:-15.870000px;}
.ws4e{word-spacing:-15.801000px;}
.ws49{word-spacing:-15.732000px;}
.ws2b{word-spacing:-15.663000px;}
.ws78{word-spacing:-15.594000px;}
.ws58{word-spacing:-15.525000px;}
.ws47{word-spacing:-15.456000px;}
.ws57{word-spacing:-15.387000px;}
.ws46{word-spacing:-15.318000px;}
.ws33{word-spacing:-15.249000px;}
.ws51{word-spacing:-15.180000px;}
.ws37{word-spacing:-15.174000px;}
.wsd6{word-spacing:-15.120000px;}
.ws34{word-spacing:-15.111000px;}
.ws90{word-spacing:-15.042000px;}
.wsa3{word-spacing:-14.973000px;}
.ws4b{word-spacing:-14.835000px;}
.ws73{word-spacing:-14.766000px;}
.ws52{word-spacing:-14.697000px;}
.ws77{word-spacing:-14.559000px;}
.wsc5{word-spacing:-14.553000px;}
.ws50{word-spacing:-14.490000px;}
.wsde{word-spacing:-14.460000px;}
.wsdf{word-spacing:-14.160000px;}
.ws24{word-spacing:-14.072454px;}
.wsb0{word-spacing:-14.007000px;}
.ws56{word-spacing:-13.938000px;}
.wsa2{word-spacing:-13.869000px;}
.wsa5{word-spacing:-13.741893px;}
.wsb1{word-spacing:-13.554000px;}
.ws94{word-spacing:-13.505778px;}
.ws38{word-spacing:-13.338000px;}
.wsc{word-spacing:-13.062000px;}
.ws8e{word-spacing:-12.229008px;}
.ws32{word-spacing:-12.075000px;}
.ws79{word-spacing:-11.934000px;}
.wsbf{word-spacing:-11.907192px;}
.wsb4{word-spacing:-11.866965px;}
.ws93{word-spacing:-11.799000px;}
.wsbe{word-spacing:-11.706057px;}
.ws19{word-spacing:-11.303787px;}
.wsb6{word-spacing:-11.247000px;}
.ws91{word-spacing:-11.062425px;}
.wsad{word-spacing:-10.695000px;}
.wsaf{word-spacing:-10.378566px;}
.wsac{word-spacing:-9.798000px;}
.wsca{word-spacing:-6.552000px;}
.wsa8{word-spacing:-6.486000px;}
.wscd{word-spacing:-6.300000px;}
.wsd4{word-spacing:-6.237000px;}
.ws5{word-spacing:-6.000000px;}
.wsdc{word-spacing:-5.922000px;}
.wsb2{word-spacing:-4.968000px;}
.ws82{word-spacing:-4.830000px;}
.wsc1{word-spacing:-4.485000px;}
.wsd0{word-spacing:-4.473000px;}
.wsaa{word-spacing:-4.278000px;}
.ws14{word-spacing:-4.200000px;}
.ws96{word-spacing:-4.002000px;}
.ws98{word-spacing:-3.726000px;}
.ws12{word-spacing:-3.696000px;}
.wsba{word-spacing:-2.760000px;}
.wsf{word-spacing:-2.400000px;}
.ws66{word-spacing:-2.070000px;}
.wse3{word-spacing:-1.920000px;}
.ws20{word-spacing:-1.794000px;}
.ws3d{word-spacing:-1.587000px;}
.ws10{word-spacing:-1.260000px;}
.ws69{word-spacing:-1.242000px;}
.wse1{word-spacing:-1.200000px;}
.wsd3{word-spacing:-1.197000px;}
.ws39{word-spacing:-1.173000px;}
.ws17{word-spacing:-1.104000px;}
.ws28{word-spacing:-1.053000px;}
.ws80{word-spacing:-1.035000px;}
.ws3e{word-spacing:-0.966000px;}
.wsa{word-spacing:-0.900000px;}
.ws6{word-spacing:-0.882000px;}
.wse0{word-spacing:-0.840000px;}
.ws6a{word-spacing:-0.828000px;}
.ws97{word-spacing:-0.759000px;}
.wsd5{word-spacing:-0.756000px;}
.ws1d{word-spacing:-0.690000px;}
.ws9e{word-spacing:-0.621000px;}
.wsbb{word-spacing:-0.566676px;}
.ws9f{word-spacing:-0.552000px;}
.ws7f{word-spacing:-0.483000px;}
.ws9{word-spacing:-0.480000px;}
.wsa9{word-spacing:-0.345000px;}
.ws8{word-spacing:-0.240000px;}
.ws7a{word-spacing:-0.138000px;}
.ws9d{word-spacing:-0.069000px;}
.ws4{word-spacing:0.000000px;}
.ws7{word-spacing:0.060000px;}
.wsa1{word-spacing:0.062964px;}
.ws21{word-spacing:0.069000px;}
.ws44{word-spacing:0.108000px;}
.ws95{word-spacing:0.138000px;}
.ws25{word-spacing:0.171000px;}
.ws67{word-spacing:0.207000px;}
.ws11{word-spacing:0.240000px;}
.wsd9{word-spacing:0.252000px;}
.ws22{word-spacing:0.276000px;}
.ws13{word-spacing:0.300000px;}
.ws7b{word-spacing:0.345000px;}
.ws1c{word-spacing:0.414000px;}
.wsda{word-spacing:0.441000px;}
.ws3b{word-spacing:0.483000px;}
.ws45{word-spacing:0.486000px;}
.wsc9{word-spacing:0.504000px;}
.wse2{word-spacing:0.540000px;}
.ws42{word-spacing:0.552000px;}
.wscb{word-spacing:0.567000px;}
.wsc0{word-spacing:0.570000px;}
.wsb3{word-spacing:0.598158px;}
.ws16{word-spacing:0.621000px;}
.ws1f{word-spacing:0.627000px;}
.wsce{word-spacing:0.630000px;}
.ws1e{word-spacing:0.690000px;}
.ws18{word-spacing:0.759000px;}
.wsd1{word-spacing:0.819000px;}
.ws3c{word-spacing:0.828000px;}
.ws15{word-spacing:0.855000px;}
.wscc{word-spacing:0.882000px;}
.ws3f{word-spacing:0.897000px;}
.wsc8{word-spacing:0.945000px;}
.ws7d{word-spacing:0.966000px;}
.wscf{word-spacing:1.008000px;}
.ws5f{word-spacing:1.035000px;}
.ws68{word-spacing:1.104000px;}
.wsa0{word-spacing:1.134000px;}
.ws8a{word-spacing:1.173000px;}
.wsd2{word-spacing:1.197000px;}
.ws1b{word-spacing:1.242000px;}
.ws40{word-spacing:1.311000px;}
.wsdd{word-spacing:1.344000px;}
.ws41{word-spacing:1.380000px;}
.ws64{word-spacing:1.449000px;}
.ws6b{word-spacing:1.518000px;}
.ws26{word-spacing:1.539000px;}
.wse4{word-spacing:1.560000px;}
.ws59{word-spacing:1.587000px;}
.ws6e{word-spacing:1.725000px;}
.ws81{word-spacing:1.794000px;}
.ws7c{word-spacing:1.863000px;}
.ws43{word-spacing:1.932000px;}
.ws65{word-spacing:2.001000px;}
.ws99{word-spacing:2.070000px;}
.ws27{word-spacing:2.109000px;}
.ws7e{word-spacing:2.139000px;}
.ws5d{word-spacing:2.208000px;}
.ws62{word-spacing:2.346000px;}
.wsa7{word-spacing:2.415000px;}
.ws84{word-spacing:2.484000px;}
.ws5a{word-spacing:2.760000px;}
.wsdb{word-spacing:2.772000px;}
.ws83{word-spacing:2.829000px;}
.ws9c{word-spacing:2.967000px;}
.ws9a{word-spacing:3.105000px;}
.ws5b{word-spacing:3.174000px;}
.ws9b{word-spacing:3.381000px;}
.ws6d{word-spacing:3.588000px;}
.ws5e{word-spacing:3.657000px;}
.wsc6{word-spacing:4.032000px;}
.wsc7{word-spacing:4.158000px;}
.ws3a{word-spacing:4.347000px;}
.wsb9{word-spacing:4.485000px;}
.wsb8{word-spacing:4.968000px;}
.ws6f{word-spacing:5.382000px;}
.ws63{word-spacing:5.451000px;}
.wsa6{word-spacing:5.520000px;}
.ws8b{word-spacing:5.727000px;}
.ws61{word-spacing:5.934000px;}
.ws60{word-spacing:6.072000px;}
.ws6c{word-spacing:6.141000px;}
.ws5c{word-spacing:9.522000px;}
.ws29{word-spacing:43.445160px;}
._16{margin-left:-13.196400px;}
._18{margin-left:-9.581100px;}
._1b{margin-left:-8.472000px;}
._17{margin-left:-7.299300px;}
._a{margin-left:-5.645400px;}
._9{margin-left:-4.260600px;}
._2{margin-left:-3.250500px;}
._7{margin-left:-2.208000px;}
._6{margin-left:-1.062000px;}
._8{width:1.242000px;}
._1{width:2.400000px;}
._b{width:3.471600px;}
._4{width:4.788000px;}
._3{width:6.630000px;}
._5{width:8.136000px;}
._11{width:9.581100px;}
._13{width:11.182914px;}
._19{width:12.973986px;}
._14{width:14.289600px;}
._1d{width:15.355200px;}
._15{width:16.447914px;}
._1f{width:18.994500px;}
._e{width:20.052000px;}
._d{width:21.339600px;}
._10{width:23.854200px;}
._1c{width:25.392600px;}
._1e{width:26.479752px;}
._1a{width:27.767124px;}
._12{width:43.445160px;}
._f{width:71.400000px;}
._c{width:253.008000px;}
._0{width:578.400000px;}
.fc0{color:rgb(35,31,32);}
.fsc{font-size:31.482000px;}
.fsb{font-size:40.227000px;}
.fs7{font-size:42.000000px;}
.fse{font-size:47.223000px;}
.fs6{font-size:48.000000px;}
.fsd{font-size:54.000000px;}
.fs8{font-size:57.000000px;}
.fs0{font-size:60.000000px;}
.fs3{font-size:63.000000px;}
.fsa{font-size:69.000000px;}
.fs1{font-size:72.000000px;}
.fs2{font-size:75.000000px;}
.fsf{font-size:78.000000px;}
.fs9{font-size:81.000000px;}
.fs5{font-size:84.000000px;}
.fs4{font-size:108.000000px;}
.y0{bottom:0.000000px;}
.y1{bottom:51.310050px;}
.y225{bottom:106.204050px;}
.y245{bottom:106.242750px;}
.y1bb{bottom:106.284300px;}
.yc9{bottom:106.290300px;}
.y86{bottom:106.296300px;}
.y40{bottom:106.296450px;}
.y178{bottom:106.307250px;}
.y1d{bottom:106.316400px;}
.yec{bottom:106.355100px;}
.y1de{bottom:106.370850px;}
.y205{bottom:106.381500px;}
.y135{bottom:106.589550px;}
.y26b{bottom:108.192750px;}
.y64{bottom:109.294800px;}
.y1ba{bottom:123.537300px;}
.yc8{bottom:123.543300px;}
.y244{bottom:125.847750px;}
.y1c{bottom:126.446400px;}
.y85{bottom:126.544800px;}
.y204{bottom:126.719250px;}
.y177{bottom:126.765750px;}
.y134{bottom:127.186050px;}
.y3f{bottom:127.496700px;}
.y224{bottom:127.750050px;}
.y63{bottom:127.795200px;}
.y1dd{bottom:127.985100px;}
.y26a{bottom:128.442750px;}
.yeb{bottom:129.107850px;}
.y1b9{bottom:140.790300px;}
.yc7{bottom:140.796300px;}
.y62{bottom:145.048200px;}
.ya3{bottom:145.051200px;}
.y243{bottom:145.452750px;}
.y1b{bottom:146.576400px;}
.y203{bottom:147.057000px;}
.y176{bottom:147.224250px;}
.y133{bottom:147.782550px;}
.ya2{bottom:148.046700px;}
.y269{bottom:148.692750px;}
.y3e{bottom:148.696950px;}
.y1dc{bottom:149.599350px;}
.yea{bottom:151.860600px;}
.y196{bottom:153.294150px;}
.y110{bottom:153.574050px;}
.y223{bottom:156.950550px;}
.y1b8{bottom:158.043300px;}
.yc6{bottom:161.044800px;}
.y242{bottom:165.057750px;}
.y61{bottom:165.296700px;}
.y1a{bottom:166.706400px;}
.y202{bottom:167.394750px;}
.y175{bottom:167.682750px;}
.y132{bottom:168.379050px;}
.y268{bottom:168.942750px;}
.y3d{bottom:169.897200px;}
.y84{bottom:170.547750px;}
.y155{bottom:170.559300px;}
.y1db{bottom:171.213600px;}
.y10f{bottom:174.222300px;}
.ye9{bottom:174.613350px;}
.y1b7{bottom:175.296300px;}
.y195{bottom:176.167650px;}
.y222{bottom:178.496550px;}
.yc5{bottom:179.536200px;}
.y60{bottom:183.800250px;}
.y241{bottom:184.662750px;}
.y19{bottom:186.836400px;}
.y201{bottom:187.732500px;}
.y174{bottom:188.141250px;}
.y131{bottom:188.975550px;}
.y267{bottom:189.192750px;}
.y154{bottom:190.931550px;}
.y3c{bottom:191.097450px;}
.y83{bottom:191.454750px;}
.ya1{bottom:192.041550px;}
.y1da{bottom:192.827850px;}
.y10e{bottom:194.870550px;}
.y1b6{bottom:195.544800px;}
.yc4{bottom:196.789200px;}
.ye8{bottom:197.366100px;}
.y194{bottom:199.041150px;}
.y5f{bottom:204.048750px;}
.y240{bottom:204.267750px;}
.y18{bottom:206.966400px;}
.y221{bottom:207.697050px;}
.y200{bottom:208.070250px;}
.y130{bottom:209.572050px;}
.y153{bottom:211.303800px;}
.y3b{bottom:212.297700px;}
.y82{bottom:212.361750px;}
.y173{bottom:212.853600px;}
.yc3{bottom:214.042200px;}
.ya0{bottom:214.328550px;}
.y1d9{bottom:214.442100px;}
.y10d{bottom:215.518800px;}
.ye7{bottom:220.118850px;}
.y193{bottom:221.914650px;}
.y266{bottom:222.192750px;}
.y23f{bottom:223.872750px;}
.y17{bottom:227.096400px;}
.y1ff{bottom:228.408000px;}
.y220{bottom:229.243050px;}
.y12f{bottom:230.168550px;}
.yc2{bottom:231.295200px;}
.y81{bottom:233.182050px;}
.y3a{bottom:233.497950px;}
.y152{bottom:235.926150px;}
.y1d8{bottom:236.056350px;}
.y10c{bottom:236.167050px;}
.y9f{bottom:236.615550px;}
.y1b5{bottom:239.778150px;}
.y265{bottom:242.442750px;}
.ye6{bottom:242.871600px;}
.y23e{bottom:243.477750px;}
.y192{bottom:244.788150px;}
.y16{bottom:247.226400px;}
.y5e{bottom:248.044500px;}
.yc1{bottom:248.548200px;}
.y1fe{bottom:248.745750px;}
.y12e{bottom:250.765050px;}
.y80{bottom:254.089050px;}
.y39{bottom:254.698200px;}
.y10b{bottom:256.815300px;}
.y1d7{bottom:257.670600px;}
.y21f{bottom:258.443550px;}
.y9e{bottom:258.902550px;}
.y1b4{bottom:260.064150px;}
.y264{bottom:262.692750px;}
.y23d{bottom:263.082750px;}
.ye5{bottom:265.624350px;}
.y172{bottom:267.329850px;}
.y15{bottom:267.356400px;}
.y191{bottom:267.661650px;}
.yc0{bottom:268.796700px;}
.y5d{bottom:268.899750px;}
.y1fd{bottom:269.083500px;}
.y12d{bottom:271.361550px;}
.y7f{bottom:274.996050px;}
.y38{bottom:275.898450px;}
.y10a{bottom:277.463550px;}
.y1d6{bottom:279.284850px;}
.y21e{bottom:279.989550px;}
.y1b3{bottom:280.350150px;}
.y9d{bottom:281.189550px;}
.y263{bottom:282.942750px;}
.y14{bottom:287.486400px;}
.ye4{bottom:288.377100px;}
.y1fc{bottom:289.421250px;}
.y5c{bottom:289.755000px;}
.y151{bottom:290.312400px;}
.y190{bottom:290.535150px;}
.y12c{bottom:291.958050px;}
.y23c{bottom:295.437750px;}
.y7e{bottom:295.903050px;}
.y37{bottom:297.098700px;}
.y109{bottom:298.111800px;}
.y1b2{bottom:300.636150px;}
.y1d5{bottom:300.899100px;}
.y262{bottom:303.192750px;}
.y21d{bottom:309.190050px;}
.y1fb{bottom:309.841350px;}
.y5b{bottom:310.610250px;}
.ye3{bottom:311.129850px;}
.y12b{bottom:312.554550px;}
.ybf{bottom:312.883200px;}
.y7d{bottom:316.810050px;}
.y36{bottom:318.298950px;}
.y108{bottom:318.760050px;}
.y13{bottom:320.381400px;}
.y1b1{bottom:320.922150px;}
.y1d4{bottom:322.513350px;}
.y9c{bottom:324.730650px;}
.y171{bottom:329.863350px;}
.y1fa{bottom:330.179100px;}
.y21c{bottom:330.736050px;}
.y5a{bottom:331.465500px;}
.y12a{bottom:333.151050px;}
.ybe{bottom:333.738450px;}
.ye2{bottom:333.882600px;}
.y18f{bottom:334.665450px;}
.y261{bottom:336.192750px;}
.y7c{bottom:337.717050px;}
.y107{bottom:339.408300px;}
.y35{bottom:339.499200px;}
.y1b0{bottom:341.208150px;}
.y1d3{bottom:344.127600px;}
.y170{bottom:350.321850px;}
.y1f9{bottom:350.516850px;}
.y59{bottom:352.320750px;}
.y150{bottom:352.685700px;}
.y23b{bottom:353.319600px;}
.y129{bottom:353.747550px;}
.ybd{bottom:354.593700px;}
.ye1{bottom:356.635350px;}
.y7b{bottom:358.624050px;}
.y21b{bottom:359.936550px;}
.y106{bottom:360.056550px;}
.y34{bottom:360.699450px;}
.y1af{bottom:361.494150px;}
.y1d2{bottom:365.741850px;}
.y16f{bottom:370.780350px;}
.y1f8{bottom:370.854600px;}
.y14f{bottom:373.057950px;}
.y58{bottom:373.176000px;}
.y128{bottom:374.344050px;}
.ybc{bottom:375.448950px;}
.y260{bottom:377.697750px;}
.y12{bottom:378.774900px;}
.ye0{bottom:379.388100px;}
.y7a{bottom:379.531050px;}
.y23a{bottom:380.409600px;}
.y105{bottom:380.704800px;}
.y21a{bottom:381.482550px;}
.y1ae{bottom:381.780150px;}
.y33{bottom:381.899700px;}
.y1d1{bottom:387.356100px;}
.y9b{bottom:389.039400px;}
.y1f7{bottom:391.192350px;}
.y16e{bottom:391.238850px;}
.y14e{bottom:393.430200px;}
.y57{bottom:394.027950px;}
.y127{bottom:394.940550px;}
.ybb{bottom:396.304200px;}
.y25f{bottom:397.197750px;}
.y18e{bottom:399.531450px;}
.y79{bottom:400.438050px;}
.y104{bottom:401.353050px;}
.y1ad{bottom:402.066150px;}
.ydf{bottom:402.140850px;}
.y11{bottom:406.410900px;}
.y239{bottom:407.499600px;}
.y1d0{bottom:408.970350px;}
.y219{bottom:410.683050px;}
.y1f6{bottom:411.530100px;}
.y16d{bottom:411.697350px;}
.y14d{bottom:413.802450px;}
.y56{bottom:414.876750px;}
.y9a{bottom:415.060650px;}
.y126{bottom:415.537050px;}
.y25e{bottom:416.697750px;}
.yba{bottom:417.159450px;}
.y78{bottom:421.345050px;}
.y103{bottom:422.001300px;}
.y1ac{bottom:422.352150px;}
.y18d{bottom:422.404950px;}
.y32{bottom:424.359600px;}
.yde{bottom:424.893600px;}
.y1cf{bottom:430.584600px;}
.y1f5{bottom:431.867850px;}
.y16c{bottom:432.155850px;}
.y218{bottom:432.229050px;}
.y10{bottom:434.046900px;}
.y14c{bottom:434.174700px;}
.y55{bottom:435.732000px;}
.y125{bottom:436.133550px;}
.y25d{bottom:436.197750px;}
.yb9{bottom:438.014700px;}
.y77{bottom:442.252050px;}
.y1ab{bottom:442.638150px;}
.y102{bottom:442.649550px;}
.y18c{bottom:445.278450px;}
.ydd{bottom:447.646350px;}
.y1ce{bottom:452.198850px;}
.y1f4{bottom:452.205600px;}
.y16b{bottom:452.614350px;}
.y14b{bottom:454.546950px;}
.y25c{bottom:455.697750px;}
.y238{bottom:455.831850px;}
.y54{bottom:456.580800px;}
.y124{bottom:456.730050px;}
.yb8{bottom:458.869950px;}
.y217{bottom:461.429550px;}
.y1aa{bottom:462.924150px;}
.y76{bottom:463.159050px;}
.y101{bottom:463.297800px;}
.y18b{bottom:468.151950px;}
.ydc{bottom:470.399100px;}
.y1f3{bottom:472.543350px;}
.y16a{bottom:473.072850px;}
.y1cd{bottom:473.813100px;}
.y14a{bottom:474.919200px;}
.y25b{bottom:475.197750px;}
.y123{bottom:477.326550px;}
.y53{bottom:477.436050px;}
.y99{bottom:479.312700px;}
.yb7{bottom:479.725200px;}
.yf{bottom:482.952600px;}
.y216{bottom:482.975550px;}
.y1a9{bottom:483.210150px;}
.y237{bottom:483.835350px;}
.y100{bottom:483.946050px;}
.y75{bottom:484.066050px;}
.y31{bottom:487.582350px;}
.y18a{bottom:491.025450px;}
.y1f2{bottom:492.881100px;}
.ydb{bottom:493.151850px;}
.y169{bottom:493.531350px;}
.y25a{bottom:494.697750px;}
.y149{bottom:495.291450px;}
.y1cc{bottom:495.427350px;}
.y122{bottom:497.923050px;}
.y52{bottom:498.291300px;}
.yb6{bottom:500.580450px;}
.y98{bottom:501.599700px;}
.y1a8{bottom:503.496150px;}
.y236{bottom:504.184350px;}
.y215{bottom:504.521550px;}
.yff{bottom:504.594300px;}
.y74{bottom:504.973050px;}
.y30{bottom:509.527350px;}
.y1f1{bottom:513.358650px;}
.y189{bottom:513.898950px;}
.y168{bottom:513.989850px;}
.y259{bottom:514.197750px;}
.ye{bottom:515.082600px;}
.y148{bottom:515.639700px;}
.yda{bottom:515.904600px;}
.y121{bottom:518.519550px;}
.y1cb{bottom:521.297550px;}
.yb5{bottom:521.469900px;}
.y1a7{bottom:523.782150px;}
.y97{bottom:523.886700px;}
.yfe{bottom:525.242550px;}
.y73{bottom:525.880050px;}
.y2f{bottom:531.522600px;}
.y235{bottom:532.187850px;}
.y1f0{bottom:533.696400px;}
.y258{bottom:533.697750px;}
.y214{bottom:533.722050px;}
.y167{bottom:534.448350px;}
.y147{bottom:536.011950px;}
.y188{bottom:536.772450px;}
.yd9{bottom:538.657350px;}
.y120{bottom:539.116050px;}
.y51{bottom:540.399750px;}
.yb4{bottom:542.325150px;}
.y1a6{bottom:544.068150px;}
.yfd{bottom:545.890800px;}
.y96{bottom:546.173700px;}
.y72{bottom:546.787050px;}
.yd{bottom:547.212600px;}
.y2e{bottom:551.967600px;}
.y234{bottom:552.536850px;}
.y257{bottom:553.197750px;}
.y1ef{bottom:554.034150px;}
.y166{bottom:554.906850px;}
.y213{bottom:555.268050px;}
.y146{bottom:556.384200px;}
.y187{bottom:559.598850px;}
.y11f{bottom:559.712550px;}
.yd8{bottom:561.410100px;}
.yb3{bottom:563.180400px;}
.y1a5{bottom:564.354150px;}
.y50{bottom:565.003500px;}
.yfc{bottom:566.539050px;}
.y71{bottom:567.694050px;}
.y95{bottom:568.460700px;}
.y2d{bottom:572.412600px;}
.y256{bottom:572.697750px;}
.y1ca{bottom:572.735250px;}
.y233{bottom:572.885850px;}
.y1ee{bottom:574.371900px;}
.y165{bottom:575.365350px;}
.y145{bottom:576.756450px;}
.y212{bottom:576.814050px;}
.yc{bottom:579.342600px;}
.y11e{bottom:580.309050px;}
.y186{bottom:582.472350px;}
.yb2{bottom:584.035650px;}
.yd7{bottom:584.162850px;}
.y1a4{bottom:584.640150px;}
.yfb{bottom:587.187300px;}
.y70{bottom:588.601050px;}
.y4f{bottom:589.607250px;}
.y94{bottom:590.747700px;}
.y255{bottom:592.197750px;}
.y2c{bottom:592.857600px;}
.y1c9{bottom:594.349500px;}
.y1ed{bottom:594.709650px;}
.y164{bottom:595.823850px;}
.y144{bottom:597.128700px;}
.y232{bottom:600.889350px;}
.y11d{bottom:600.905550px;}
.yb1{bottom:604.890900px;}
.y1a3{bottom:604.926150px;}
.y185{bottom:605.345850px;}
.y211{bottom:606.014550px;}
.yd6{bottom:606.915600px;}
.yfa{bottom:607.835550px;}
.yb{bottom:611.472600px;}
.y254{bottom:611.697750px;}
.y93{bottom:613.034700px;}
.y2b{bottom:613.302600px;}
.y1ec{bottom:615.047400px;}
.y1c8{bottom:615.963750px;}
.y163{bottom:616.282350px;}
.y143{bottom:617.500950px;}
.y231{bottom:621.238350px;}
.y11c{bottom:621.502050px;}
.y1a2{bottom:625.212150px;}
.yb0{bottom:625.810800px;}
.y210{bottom:627.560550px;}
.y184{bottom:628.219350px;}
.yf9{bottom:628.483800px;}
.yd5{bottom:629.668350px;}
.y6f{bottom:630.762750px;}
.y253{bottom:631.197750px;}
.y2a{bottom:633.747600px;}
.y92{bottom:635.321700px;}
.y1eb{bottom:635.385150px;}
.y162{bottom:636.740850px;}
.y1c7{bottom:637.578000px;}
.y142{bottom:637.873200px;}
.y11b{bottom:642.098550px;}
.ya{bottom:643.602600px;}
.y1a1{bottom:645.498150px;}
.yaf{bottom:646.666050px;}
.y20f{bottom:649.106550px;}
.yf8{bottom:649.132050px;}
.y230{bottom:649.241850px;}
.y252{bottom:650.697750px;}
.y183{bottom:651.092850px;}
.yd4{bottom:652.421100px;}
.y4e{bottom:652.438350px;}
.y29{bottom:654.192600px;}
.y1ea{bottom:655.722900px;}
.y161{bottom:657.199350px;}
.y91{bottom:657.585300px;}
.y141{bottom:658.245450px;}
.y1c6{bottom:659.192250px;}
.y11a{bottom:662.695050px;}
.y1a0{bottom:665.784150px;}
.yae{bottom:667.521300px;}
.y22f{bottom:669.590850px;}
.yf7{bottom:669.780300px;}
.y251{bottom:670.197750px;}
.y4d{bottom:673.293600px;}
.y182{bottom:673.966350px;}
.y28{bottom:674.637600px;}
.yd3{bottom:675.173850px;}
.y1e9{bottom:676.060650px;}
.y160{bottom:677.657850px;}
.y20e{bottom:678.307050px;}
.y140{bottom:678.617700px;}
.y90{bottom:679.872300px;}
.y1c5{bottom:680.806500px;}
.y119{bottom:683.291550px;}
.y19f{bottom:686.070150px;}
.yad{bottom:688.376550px;}
.y250{bottom:689.697750px;}
.yf6{bottom:690.428550px;}
.y6e{bottom:693.631350px;}
.y4c{bottom:694.148850px;}
.y27{bottom:695.082600px;}
.y1e8{bottom:696.398400px;}
.y181{bottom:696.839850px;}
.y22e{bottom:697.594350px;}
.yd2{bottom:697.926600px;}
.y15f{bottom:698.116350px;}
.y13f{bottom:698.989950px;}
.y8f{bottom:702.159300px;}
.y1c4{bottom:702.420750px;}
.y118{bottom:703.888050px;}
.y9{bottom:705.503100px;}
.y19e{bottom:706.356150px;}
.y24f{bottom:709.197750px;}
.yac{bottom:709.231800px;}
.yf5{bottom:711.076800px;}
.y6d{bottom:714.538350px;}
.y4b{bottom:715.004100px;}
.y26{bottom:715.527600px;}
.y1e7{bottom:716.736150px;}
.y22d{bottom:717.943350px;}
.y15e{bottom:718.574850px;}
.y13e{bottom:719.362200px;}
.y180{bottom:719.713350px;}
.yd1{bottom:720.679350px;}
.y1c3{bottom:724.035000px;}
.y8e{bottom:724.446300px;}
.y117{bottom:724.484550px;}
.y19d{bottom:726.642150px;}
.y8{bottom:727.133100px;}
.y24e{bottom:728.697750px;}
.yab{bottom:730.087050px;}
.y20d{bottom:730.339350px;}
.yf4{bottom:731.725050px;}
.y6c{bottom:735.445350px;}
.y4a{bottom:735.859350px;}
.y25{bottom:735.972600px;}
.y1e6{bottom:737.073900px;}
.y22c{bottom:738.292350px;}
.y15d{bottom:739.033350px;}
.y13d{bottom:739.734450px;}
.y17f{bottom:742.586850px;}
.yd0{bottom:743.432100px;}
.y116{bottom:745.081050px;}
.y1c2{bottom:745.649250px;}
.y8d{bottom:746.692350px;}
.y19c{bottom:746.928150px;}
.y24d{bottom:748.197750px;}
.y20c{bottom:751.884600px;}
.yf3{bottom:752.373300px;}
.y6b{bottom:756.352350px;}
.y49{bottom:756.714600px;}
.y7{bottom:757.268100px;}
.y1e5{bottom:757.411650px;}
.y22b{bottom:758.641350px;}
.y15c{bottom:759.491850px;}
.y13c{bottom:760.106700px;}
.y17e{bottom:765.460350px;}
.y115{bottom:765.677550px;}
.ycf{bottom:766.184850px;}
.y19b{bottom:767.214150px;}
.y1c1{bottom:767.263500px;}
.y24c{bottom:767.697750px;}
.y8c{bottom:768.979350px;}
.y24{bottom:769.182600px;}
.yaa{bottom:771.814800px;}
.yf2{bottom:773.021550px;}
.y20b{bottom:773.429850px;}
.y6a{bottom:777.259350px;}
.y48{bottom:777.569850px;}
.y1e4{bottom:777.749400px;}
.y6{bottom:778.900800px;}
.y15b{bottom:779.950350px;}
.y13b{bottom:780.467850px;}
.y114{bottom:786.274050px;}
.y22a{bottom:786.644850px;}
.y24b{bottom:787.197750px;}
.y17d{bottom:788.333850px;}
.y1c0{bottom:788.877750px;}
.yce{bottom:788.937600px;}
.y8b{bottom:791.266350px;}
.y19a{bottom:791.760450px;}
.ya9{bottom:792.670050px;}
.yf1{bottom:793.703400px;}
.y20a{bottom:794.975100px;}
.y1e3{bottom:798.087150px;}
.y69{bottom:798.166350px;}
.y47{bottom:798.425100px;}
.y15a{bottom:800.408850px;}
.y13a{bottom:800.840100px;}
.y24a{bottom:806.697750px;}
.y113{bottom:806.870550px;}
.y229{bottom:806.993850px;}
.y1bf{bottom:810.492000px;}
.y17c{bottom:811.207350px;}
.ycd{bottom:811.690350px;}
.ya8{bottom:813.525300px;}
.y8a{bottom:813.553350px;}
.yf0{bottom:814.351650px;}
.y209{bottom:816.520350px;}
.y1e2{bottom:818.424900px;}
.y68{bottom:819.073350px;}
.y46{bottom:819.280350px;}
.y23{bottom:819.402600px;}
.y159{bottom:820.867350px;}
.y139{bottom:821.212350px;}
.y249{bottom:826.197750px;}
.y5{bottom:830.301300px;}
.y112{bottom:831.727500px;}
.y1be{bottom:832.106250px;}
.y17b{bottom:834.080850px;}
.ya7{bottom:834.380550px;}
.ycc{bottom:834.443100px;}
.y228{bottom:834.997350px;}
.yef{bottom:834.999900px;}
.y89{bottom:835.840350px;}
.y208{bottom:838.065600px;}
.y1e1{bottom:838.762650px;}
.y67{bottom:839.980350px;}
.y45{bottom:840.135600px;}
.y158{bottom:841.325850px;}
.y22{bottom:841.347600px;}
.y138{bottom:841.584600px;}
.y199{bottom:841.843350px;}
.y248{bottom:845.697750px;}
.y4{bottom:851.931300px;}
.y1bd{bottom:853.720500px;}
.ya6{bottom:855.235800px;}
.y227{bottom:855.346350px;}
.yee{bottom:855.648150px;}
.y17a{bottom:856.954350px;}
.ycb{bottom:857.195850px;}
.y88{bottom:858.127350px;}
.y1e0{bottom:859.100400px;}
.y207{bottom:859.610850px;}
.y66{bottom:860.887350px;}
.y44{bottom:860.990850px;}
.y157{bottom:861.784350px;}
.y137{bottom:861.956850px;}
.y198{bottom:862.129350px;}
.y21{bottom:863.307750px;}
.y247{bottom:865.197750px;}
.y1bc{bottom:875.334750px;}
.ya5{bottom:876.091050px;}
.yed{bottom:876.296400px;}
.y179{bottom:879.827850px;}
.yca{bottom:879.948600px;}
.y87{bottom:880.414350px;}
.y206{bottom:881.156100px;}
.y65{bottom:881.794350px;}
.y43{bottom:881.846100px;}
.y3{bottom:882.066300px;}
.y111{bottom:882.104850px;}
.y156{bottom:882.242850px;}
.y136{bottom:882.329100px;}
.y197{bottom:882.415350px;}
.y226{bottom:883.349850px;}
.y20{bottom:883.752750px;}
.y246{bottom:884.697750px;}
.y1df{bottom:900.706200px;}
.ya4{bottom:901.204950px;}
.y42{bottom:902.701350px;}
.y2{bottom:903.698850px;}
.y1f{bottom:904.197750px;}
.y1e{bottom:948.189000px;}
.y41{bottom:966.189000px;}
.h11{height:21.720735px;}
.hd{height:40.620539px;}
.ha{height:41.396484px;}
.h15{height:43.466309px;}
.h7{height:46.757812px;}
.he{height:52.602539px;}
.h16{height:55.488281px;}
.h4{height:58.447266px;}
.h3{height:61.369629px;}
.h9{height:67.214355px;}
.hc{height:67.227555px;}
.hb{height:67.240155px;}
.h10{height:67.307955px;}
.h13{height:67.310355px;}
.h14{height:67.402755px;}
.hf{height:67.561155px;}
.h2{height:73.059082px;}
.h12{height:75.981445px;}
.h8{height:78.903809px;}
.h6{height:81.826172px;}
.h5{height:105.205078px;}
.h0{height:1020.472500px;}
.h1{height:1020.750000px;}
.w0{width:722.835000px;}
.w1{width:723.000000px;}
.x0{left:0.000000px;}
.x9{left:81.428700px;}
.xd{left:82.459950px;}
.x5{left:83.686650px;}
.x1{left:85.039350px;}
.x4{left:105.030600px;}
.x6{left:106.379250px;}
.xc{left:130.333050px;}
.xb{left:131.575050px;}
.xa{left:200.986500px;}
.x8{left:202.344450px;}
.x7{left:212.664000px;}
.x3{left:231.863700px;}
.x2{left:233.635500px;}
@media print{
.v4{vertical-align:-18.642667pt;}
.v5{vertical-align:-15.090667pt;}
.v2{vertical-align:-10.650667pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:15.113600pt;}
.v3{vertical-align:18.642667pt;}
.ls4e{letter-spacing:-8.464000pt;}
.ls9a{letter-spacing:-6.440000pt;}
.ls9b{letter-spacing:-5.642667pt;}
.ls63{letter-spacing:-5.458667pt;}
.ls52{letter-spacing:-5.397333pt;}
.lsa5{letter-spacing:-5.152000pt;}
.ls7b{letter-spacing:-5.090667pt;}
.ls92{letter-spacing:-4.906667pt;}
.ls56{letter-spacing:-4.845333pt;}
.ls65{letter-spacing:-4.784000pt;}
.ls89{letter-spacing:-4.661333pt;}
.ls3d{letter-spacing:-4.416000pt;}
.lsa4{letter-spacing:-3.986667pt;}
.ls36{letter-spacing:-3.864000pt;}
.lsb4{letter-spacing:-3.696000pt;}
.lsb3{letter-spacing:-3.584000pt;}
.lsa6{letter-spacing:-3.373333pt;}
.ls51{letter-spacing:-3.250667pt;}
.ls64{letter-spacing:-3.189333pt;}
.ls86{letter-spacing:-3.005333pt;}
.ls4c{letter-spacing:-2.821333pt;}
.ls61{letter-spacing:-2.760000pt;}
.ls9d{letter-spacing:-2.698667pt;}
.ls5{letter-spacing:-2.688000pt;}
.ls87{letter-spacing:-2.637333pt;}
.ls73{letter-spacing:-2.514667pt;}
.lsc8{letter-spacing:-2.464000pt;}
.ls4b{letter-spacing:-2.453333pt;}
.ls59{letter-spacing:-2.269333pt;}
.ls71{letter-spacing:-2.208000pt;}
.ls93{letter-spacing:-2.146667pt;}
.ls55{letter-spacing:-2.085333pt;}
.ls6d{letter-spacing:-2.024000pt;}
.ls4f{letter-spacing:-1.962667pt;}
.ls6c{letter-spacing:-1.901333pt;}
.ls2a{letter-spacing:-1.874667pt;}
.ls4a{letter-spacing:-1.840000pt;}
.ls58{letter-spacing:-1.778667pt;}
.ls40{letter-spacing:-1.717333pt;}
.ls5d{letter-spacing:-1.656000pt;}
.ls3e{letter-spacing:-1.594667pt;}
.ls48{letter-spacing:-1.533333pt;}
.ls62{letter-spacing:-1.472000pt;}
.lsab{letter-spacing:-1.466667pt;}
.ls49{letter-spacing:-1.410667pt;}
.lsd0{letter-spacing:-1.386667pt;}
.ls29{letter-spacing:-1.368000pt;}
.ls60{letter-spacing:-1.349333pt;}
.ls57{letter-spacing:-1.288000pt;}
.ls99{letter-spacing:-1.266667pt;}
.ls74{letter-spacing:-1.248000pt;}
.ls37{letter-spacing:-1.226667pt;}
.ls6{letter-spacing:-1.194667pt;}
.ls43{letter-spacing:-1.165333pt;}
.ls1b{letter-spacing:-1.104000pt;}
.ls14{letter-spacing:-1.080000pt;}
.lsc1{letter-spacing:-1.064000pt;}
.ls50{letter-spacing:-1.042667pt;}
.ls8c{letter-spacing:-1.008000pt;}
.ls5c{letter-spacing:-0.981333pt;}
.lsba{letter-spacing:-0.952000pt;}
.ls4d{letter-spacing:-0.920000pt;}
.lsbd{letter-spacing:-0.896000pt;}
.lsad{letter-spacing:-0.864000pt;}
.ls3b{letter-spacing:-0.858667pt;}
.lsb5{letter-spacing:-0.840000pt;}
.lsa3{letter-spacing:-0.832000pt;}
.ls9c{letter-spacing:-0.822419pt;}
.ls41{letter-spacing:-0.797333pt;}
.lsb9{letter-spacing:-0.784000pt;}
.ls13{letter-spacing:-0.760000pt;}
.ls3c{letter-spacing:-0.736000pt;}
.lsbf{letter-spacing:-0.728000pt;}
.ls17{letter-spacing:-0.674667pt;}
.ls1e{letter-spacing:-0.613333pt;}
.lsd2{letter-spacing:-0.586667pt;}
.lsbc{letter-spacing:-0.560000pt;}
.ls21{letter-spacing:-0.557333pt;}
.ls15{letter-spacing:-0.552000pt;}
.ls9f{letter-spacing:-0.531696pt;}
.lsac{letter-spacing:-0.506667pt;}
.lsb8{letter-spacing:-0.504000pt;}
.ls44{letter-spacing:-0.490667pt;}
.lsce{letter-spacing:-0.480000pt;}
.lsb6{letter-spacing:-0.448000pt;}
.ls46{letter-spacing:-0.432000pt;}
.ls3a{letter-spacing:-0.429333pt;}
.lsc5{letter-spacing:-0.392000pt;}
.ls1c{letter-spacing:-0.368000pt;}
.lsd1{letter-spacing:-0.320000pt;}
.ls39{letter-spacing:-0.306667pt;}
.lse{letter-spacing:-0.266667pt;}
.ls24{letter-spacing:-0.245333pt;}
.lsc6{letter-spacing:-0.224000pt;}
.ls88{letter-spacing:-0.214544pt;}
.lsf{letter-spacing:-0.213333pt;}
.ls5b{letter-spacing:-0.184000pt;}
.ls28{letter-spacing:-0.152000pt;}
.ls53{letter-spacing:-0.122667pt;}
.ls45{letter-spacing:-0.096000pt;}
.ls23{letter-spacing:-0.061333pt;}
.ls8d{letter-spacing:-0.055968pt;}
.ls8{letter-spacing:-0.053333pt;}
.ls1{letter-spacing:0.000000pt;}
.ls26{letter-spacing:0.000267pt;}
.ls2d{letter-spacing:0.026667pt;}
.ls38{letter-spacing:0.061333pt;}
.ls6a{letter-spacing:0.085867pt;}
.ls6b{letter-spacing:0.122667pt;}
.ls6e{letter-spacing:0.184000pt;}
.lsa0{letter-spacing:0.192000pt;}
.ls8b{letter-spacing:0.209880pt;}
.ls9{letter-spacing:0.213333pt;}
.lsc0{letter-spacing:0.224000pt;}
.ls31{letter-spacing:0.245333pt;}
.ls96{letter-spacing:0.306667pt;}
.lsae{letter-spacing:0.357573pt;}
.ls69{letter-spacing:0.368000pt;}
.lsc7{letter-spacing:0.392000pt;}
.ls97{letter-spacing:0.419760pt;}
.lsa{letter-spacing:0.426667pt;}
.ls6f{letter-spacing:0.429333pt;}
.ls7e{letter-spacing:0.490667pt;}
.lsa2{letter-spacing:0.500603pt;}
.lsa8{letter-spacing:0.503712pt;}
.ls67{letter-spacing:0.533600pt;}
.lsaf{letter-spacing:0.536360pt;}
.ls8a{letter-spacing:0.552000pt;}
.ls1d{letter-spacing:0.613333pt;}
.lsc4{letter-spacing:0.672000pt;}
.ls32{letter-spacing:0.674667pt;}
.ls2b{letter-spacing:0.713592pt;}
.ls5f{letter-spacing:0.736000pt;}
.lscc{letter-spacing:0.746667pt;}
.ls4{letter-spacing:0.784000pt;}
.lsb{letter-spacing:0.800000pt;}
.ls84{letter-spacing:0.822419pt;}
.ls3f{letter-spacing:0.858667pt;}
.ls70{letter-spacing:0.920000pt;}
.ls2c{letter-spacing:0.936000pt;}
.ls16{letter-spacing:0.981333pt;}
.ls35{letter-spacing:1.042667pt;}
.lsc2{letter-spacing:1.064000pt;}
.lscd{letter-spacing:1.066667pt;}
.ls1a{letter-spacing:1.073333pt;}
.ls5e{letter-spacing:1.104000pt;}
.ls91{letter-spacing:1.116267pt;}
.ls3{letter-spacing:1.120000pt;}
.ls1f{letter-spacing:1.200000pt;}
.ls54{letter-spacing:1.288000pt;}
.ls34{letter-spacing:1.392000pt;}
.ls30{letter-spacing:1.410667pt;}
.ls94{letter-spacing:1.472000pt;}
.ls81{letter-spacing:1.483200pt;}
.ls7a{letter-spacing:1.533333pt;}
.ls22{letter-spacing:1.594667pt;}
.lscf{letter-spacing:1.706667pt;}
.ls27{letter-spacing:1.778933pt;}
.ls5a{letter-spacing:1.840000pt;}
.ls19{letter-spacing:2.085067pt;}
.lsd{letter-spacing:2.133333pt;}
.ls8e{letter-spacing:2.330667pt;}
.lsa7{letter-spacing:2.453333pt;}
.ls33{letter-spacing:2.760000pt;}
.ls90{letter-spacing:2.821333pt;}
.ls77{letter-spacing:2.882667pt;}
.ls68{letter-spacing:3.066667pt;}
.ls80{letter-spacing:3.189333pt;}
.ls8f{letter-spacing:3.250667pt;}
.ls10{letter-spacing:3.285333pt;}
.lsca{letter-spacing:3.306667pt;}
.ls85{letter-spacing:3.312000pt;}
.ls83{letter-spacing:3.557333pt;}
.lsb2{letter-spacing:3.712800pt;}
.ls12{letter-spacing:3.733333pt;}
.ls7f{letter-spacing:3.802667pt;}
.ls7d{letter-spacing:3.864000pt;}
.lsbe{letter-spacing:3.976000pt;}
.lsb0{letter-spacing:3.986667pt;}
.ls72{letter-spacing:4.293333pt;}
.ls9e{letter-spacing:4.416000pt;}
.ls79{letter-spacing:4.906667pt;}
.ls11{letter-spacing:5.120000pt;}
.ls76{letter-spacing:5.213333pt;}
.ls7{letter-spacing:5.226667pt;}
.lsc9{letter-spacing:5.264000pt;}
.ls2{letter-spacing:5.333333pt;}
.lsaa{letter-spacing:5.458667pt;}
.lsc3{letter-spacing:5.544000pt;}
.lsbb{letter-spacing:5.600000pt;}
.ls95{letter-spacing:5.765333pt;}
.lsb7{letter-spacing:5.824000pt;}
.ls78{letter-spacing:6.317333pt;}
.ls2f{letter-spacing:6.562667pt;}
.ls82{letter-spacing:7.253472pt;}
.lsa1{letter-spacing:7.254005pt;}
.ls42{letter-spacing:8.034667pt;}
.lsc{letter-spacing:415.606400pt;}
.ls7c{letter-spacing:415.786133pt;}
.ls2e{letter-spacing:416.172800pt;}
.ls66{letter-spacing:416.199467pt;}
.ls98{letter-spacing:416.286400pt;}
.lsb1{letter-spacing:416.412800pt;}
.ls20{letter-spacing:416.439467pt;}
.lscb{letter-spacing:416.846400pt;}
.lsa9{letter-spacing:418.679467pt;}
.ls0{letter-spacing:846.686933pt;}
.ls25{letter-spacing:847.126933pt;}
.ls47{letter-spacing:849.460267pt;}
.ls75{letter-spacing:853.060267pt;}
.ls18{letter-spacing:854.820267pt;}
.ws1{word-spacing:-24.288000pt;}
.ws35{word-spacing:-23.184000pt;}
.ws23{word-spacing:-20.232000pt;}
.ws3{word-spacing:-20.213333pt;}
.wsd{word-spacing:-20.106667pt;}
.ws2{word-spacing:-19.786667pt;}
.wsc2{word-spacing:-19.600000pt;}
.wsbd{word-spacing:-19.368000pt;}
.wse{word-spacing:-19.152000pt;}
.ws2a{word-spacing:-18.760000pt;}
.wsb5{word-spacing:-18.650667pt;}
.wsb{word-spacing:-18.466667pt;}
.wsd8{word-spacing:-18.293333pt;}
.ws72{word-spacing:-17.848000pt;}
.wsab{word-spacing:-17.466667pt;}
.wsbc{word-spacing:-17.266667pt;}
.ws2e{word-spacing:-17.234667pt;}
.ws2d{word-spacing:-16.928000pt;}
.ws86{word-spacing:-16.866667pt;}
.ws89{word-spacing:-16.682667pt;}
.ws87{word-spacing:-16.621333pt;}
.ws76{word-spacing:-16.560000pt;}
.ws36{word-spacing:-16.498667pt;}
.ws4d{word-spacing:-16.437333pt;}
.wsa4{word-spacing:-16.376000pt;}
.wsb7{word-spacing:-16.192000pt;}
.ws0{word-spacing:-16.106667pt;}
.ws88{word-spacing:-16.069333pt;}
.wsc3{word-spacing:-15.960000pt;}
.ws8c{word-spacing:-15.517333pt;}
.ws85{word-spacing:-15.456000pt;}
.ws2f{word-spacing:-15.394667pt;}
.ws75{word-spacing:-15.333333pt;}
.ws2c{word-spacing:-15.210667pt;}
.ws31{word-spacing:-15.149333pt;}
.wsc4{word-spacing:-15.120000pt;}
.wsae{word-spacing:-15.088000pt;}
.ws4c{word-spacing:-15.026667pt;}
.ws53{word-spacing:-14.842667pt;}
.ws70{word-spacing:-14.781333pt;}
.ws8d{word-spacing:-14.720000pt;}
.ws1a{word-spacing:-14.688000pt;}
.ws92{word-spacing:-14.658667pt;}
.ws54{word-spacing:-14.597333pt;}
.ws4f{word-spacing:-14.536000pt;}
.ws8f{word-spacing:-14.474667pt;}
.ws74{word-spacing:-14.413333pt;}
.ws71{word-spacing:-14.352000pt;}
.ws30{word-spacing:-14.290667pt;}
.ws48{word-spacing:-14.229333pt;}
.wsd7{word-spacing:-14.224000pt;}
.ws55{word-spacing:-14.168000pt;}
.ws4a{word-spacing:-14.106667pt;}
.ws4e{word-spacing:-14.045333pt;}
.ws49{word-spacing:-13.984000pt;}
.ws2b{word-spacing:-13.922667pt;}
.ws78{word-spacing:-13.861333pt;}
.ws58{word-spacing:-13.800000pt;}
.ws47{word-spacing:-13.738667pt;}
.ws57{word-spacing:-13.677333pt;}
.ws46{word-spacing:-13.616000pt;}
.ws33{word-spacing:-13.554667pt;}
.ws51{word-spacing:-13.493333pt;}
.ws37{word-spacing:-13.488000pt;}
.wsd6{word-spacing:-13.440000pt;}
.ws34{word-spacing:-13.432000pt;}
.ws90{word-spacing:-13.370667pt;}
.wsa3{word-spacing:-13.309333pt;}
.ws4b{word-spacing:-13.186667pt;}
.ws73{word-spacing:-13.125333pt;}
.ws52{word-spacing:-13.064000pt;}
.ws77{word-spacing:-12.941333pt;}
.wsc5{word-spacing:-12.936000pt;}
.ws50{word-spacing:-12.880000pt;}
.wsde{word-spacing:-12.853333pt;}
.wsdf{word-spacing:-12.586667pt;}
.ws24{word-spacing:-12.508848pt;}
.wsb0{word-spacing:-12.450667pt;}
.ws56{word-spacing:-12.389333pt;}
.wsa2{word-spacing:-12.328000pt;}
.wsa5{word-spacing:-12.215016pt;}
.wsb1{word-spacing:-12.048000pt;}
.ws94{word-spacing:-12.005136pt;}
.ws38{word-spacing:-11.856000pt;}
.wsc{word-spacing:-11.610667pt;}
.ws8e{word-spacing:-10.870229pt;}
.ws32{word-spacing:-10.733333pt;}
.ws79{word-spacing:-10.608000pt;}
.wsbf{word-spacing:-10.584171pt;}
.wsb4{word-spacing:-10.548413pt;}
.ws93{word-spacing:-10.488000pt;}
.wsbe{word-spacing:-10.405384pt;}
.ws19{word-spacing:-10.047811pt;}
.wsb6{word-spacing:-9.997333pt;}
.ws91{word-spacing:-9.833267pt;}
.wsad{word-spacing:-9.506667pt;}
.wsaf{word-spacing:-9.225392pt;}
.wsac{word-spacing:-8.709333pt;}
.wsca{word-spacing:-5.824000pt;}
.wsa8{word-spacing:-5.765333pt;}
.wscd{word-spacing:-5.600000pt;}
.wsd4{word-spacing:-5.544000pt;}
.ws5{word-spacing:-5.333333pt;}
.wsdc{word-spacing:-5.264000pt;}
.wsb2{word-spacing:-4.416000pt;}
.ws82{word-spacing:-4.293333pt;}
.wsc1{word-spacing:-3.986667pt;}
.wsd0{word-spacing:-3.976000pt;}
.wsaa{word-spacing:-3.802667pt;}
.ws14{word-spacing:-3.733333pt;}
.ws96{word-spacing:-3.557333pt;}
.ws98{word-spacing:-3.312000pt;}
.ws12{word-spacing:-3.285333pt;}
.wsba{word-spacing:-2.453333pt;}
.wsf{word-spacing:-2.133333pt;}
.ws66{word-spacing:-1.840000pt;}
.wse3{word-spacing:-1.706667pt;}
.ws20{word-spacing:-1.594667pt;}
.ws3d{word-spacing:-1.410667pt;}
.ws10{word-spacing:-1.120000pt;}
.ws69{word-spacing:-1.104000pt;}
.wse1{word-spacing:-1.066667pt;}
.wsd3{word-spacing:-1.064000pt;}
.ws39{word-spacing:-1.042667pt;}
.ws17{word-spacing:-0.981333pt;}
.ws28{word-spacing:-0.936000pt;}
.ws80{word-spacing:-0.920000pt;}
.ws3e{word-spacing:-0.858667pt;}
.wsa{word-spacing:-0.800000pt;}
.ws6{word-spacing:-0.784000pt;}
.wse0{word-spacing:-0.746667pt;}
.ws6a{word-spacing:-0.736000pt;}
.ws97{word-spacing:-0.674667pt;}
.wsd5{word-spacing:-0.672000pt;}
.ws1d{word-spacing:-0.613333pt;}
.ws9e{word-spacing:-0.552000pt;}
.wsbb{word-spacing:-0.503712pt;}
.ws9f{word-spacing:-0.490667pt;}
.ws7f{word-spacing:-0.429333pt;}
.ws9{word-spacing:-0.426667pt;}
.wsa9{word-spacing:-0.306667pt;}
.ws8{word-spacing:-0.213333pt;}
.ws7a{word-spacing:-0.122667pt;}
.ws9d{word-spacing:-0.061333pt;}
.ws4{word-spacing:0.000000pt;}
.ws7{word-spacing:0.053333pt;}
.wsa1{word-spacing:0.055968pt;}
.ws21{word-spacing:0.061333pt;}
.ws44{word-spacing:0.096000pt;}
.ws95{word-spacing:0.122667pt;}
.ws25{word-spacing:0.152000pt;}
.ws67{word-spacing:0.184000pt;}
.ws11{word-spacing:0.213333pt;}
.wsd9{word-spacing:0.224000pt;}
.ws22{word-spacing:0.245333pt;}
.ws13{word-spacing:0.266667pt;}
.ws7b{word-spacing:0.306667pt;}
.ws1c{word-spacing:0.368000pt;}
.wsda{word-spacing:0.392000pt;}
.ws3b{word-spacing:0.429333pt;}
.ws45{word-spacing:0.432000pt;}
.wsc9{word-spacing:0.448000pt;}
.wse2{word-spacing:0.480000pt;}
.ws42{word-spacing:0.490667pt;}
.wscb{word-spacing:0.504000pt;}
.wsc0{word-spacing:0.506667pt;}
.wsb3{word-spacing:0.531696pt;}
.ws16{word-spacing:0.552000pt;}
.ws1f{word-spacing:0.557333pt;}
.wsce{word-spacing:0.560000pt;}
.ws1e{word-spacing:0.613333pt;}
.ws18{word-spacing:0.674667pt;}
.wsd1{word-spacing:0.728000pt;}
.ws3c{word-spacing:0.736000pt;}
.ws15{word-spacing:0.760000pt;}
.wscc{word-spacing:0.784000pt;}
.ws3f{word-spacing:0.797333pt;}
.wsc8{word-spacing:0.840000pt;}
.ws7d{word-spacing:0.858667pt;}
.wscf{word-spacing:0.896000pt;}
.ws5f{word-spacing:0.920000pt;}
.ws68{word-spacing:0.981333pt;}
.wsa0{word-spacing:1.008000pt;}
.ws8a{word-spacing:1.042667pt;}
.wsd2{word-spacing:1.064000pt;}
.ws1b{word-spacing:1.104000pt;}
.ws40{word-spacing:1.165333pt;}
.wsdd{word-spacing:1.194667pt;}
.ws41{word-spacing:1.226667pt;}
.ws64{word-spacing:1.288000pt;}
.ws6b{word-spacing:1.349333pt;}
.ws26{word-spacing:1.368000pt;}
.wse4{word-spacing:1.386667pt;}
.ws59{word-spacing:1.410667pt;}
.ws6e{word-spacing:1.533333pt;}
.ws81{word-spacing:1.594667pt;}
.ws7c{word-spacing:1.656000pt;}
.ws43{word-spacing:1.717333pt;}
.ws65{word-spacing:1.778667pt;}
.ws99{word-spacing:1.840000pt;}
.ws27{word-spacing:1.874667pt;}
.ws7e{word-spacing:1.901333pt;}
.ws5d{word-spacing:1.962667pt;}
.ws62{word-spacing:2.085333pt;}
.wsa7{word-spacing:2.146667pt;}
.ws84{word-spacing:2.208000pt;}
.ws5a{word-spacing:2.453333pt;}
.wsdb{word-spacing:2.464000pt;}
.ws83{word-spacing:2.514667pt;}
.ws9c{word-spacing:2.637333pt;}
.ws9a{word-spacing:2.760000pt;}
.ws5b{word-spacing:2.821333pt;}
.ws9b{word-spacing:3.005333pt;}
.ws6d{word-spacing:3.189333pt;}
.ws5e{word-spacing:3.250667pt;}
.wsc6{word-spacing:3.584000pt;}
.wsc7{word-spacing:3.696000pt;}
.ws3a{word-spacing:3.864000pt;}
.wsb9{word-spacing:3.986667pt;}
.wsb8{word-spacing:4.416000pt;}
.ws6f{word-spacing:4.784000pt;}
.ws63{word-spacing:4.845333pt;}
.wsa6{word-spacing:4.906667pt;}
.ws8b{word-spacing:5.090667pt;}
.ws61{word-spacing:5.274667pt;}
.ws60{word-spacing:5.397333pt;}
.ws6c{word-spacing:5.458667pt;}
.ws5c{word-spacing:8.464000pt;}
.ws29{word-spacing:38.617920pt;}
._16{margin-left:-11.730133pt;}
._18{margin-left:-8.516533pt;}
._1b{margin-left:-7.530667pt;}
._17{margin-left:-6.488267pt;}
._a{margin-left:-5.018133pt;}
._9{margin-left:-3.787200pt;}
._2{margin-left:-2.889333pt;}
._7{margin-left:-1.962667pt;}
._6{margin-left:-0.944000pt;}
._8{width:1.104000pt;}
._1{width:2.133333pt;}
._b{width:3.085867pt;}
._4{width:4.256000pt;}
._3{width:5.893333pt;}
._5{width:7.232000pt;}
._11{width:8.516533pt;}
._13{width:9.940368pt;}
._19{width:11.532432pt;}
._14{width:12.701867pt;}
._1d{width:13.649067pt;}
._15{width:14.620368pt;}
._1f{width:16.884000pt;}
._e{width:17.824000pt;}
._d{width:18.968533pt;}
._10{width:21.203733pt;}
._1c{width:22.571200pt;}
._1e{width:23.537557pt;}
._1a{width:24.681888pt;}
._12{width:38.617920pt;}
._f{width:63.466667pt;}
._c{width:224.896000pt;}
._0{width:514.133333pt;}
.fsc{font-size:27.984000pt;}
.fsb{font-size:35.757333pt;}
.fs7{font-size:37.333333pt;}
.fse{font-size:41.976000pt;}
.fs6{font-size:42.666667pt;}
.fsd{font-size:48.000000pt;}
.fs8{font-size:50.666667pt;}
.fs0{font-size:53.333333pt;}
.fs3{font-size:56.000000pt;}
.fsa{font-size:61.333333pt;}
.fs1{font-size:64.000000pt;}
.fs2{font-size:66.666667pt;}
.fsf{font-size:69.333333pt;}
.fs9{font-size:72.000000pt;}
.fs5{font-size:74.666667pt;}
.fs4{font-size:96.000000pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:45.608933pt;}
.y225{bottom:94.403600pt;}
.y245{bottom:94.438000pt;}
.y1bb{bottom:94.474933pt;}
.yc9{bottom:94.480267pt;}
.y86{bottom:94.485600pt;}
.y40{bottom:94.485733pt;}
.y178{bottom:94.495333pt;}
.y1d{bottom:94.503467pt;}
.yec{bottom:94.537867pt;}
.y1de{bottom:94.551867pt;}
.y205{bottom:94.561333pt;}
.y135{bottom:94.746267pt;}
.y26b{bottom:96.171333pt;}
.y64{bottom:97.150933pt;}
.y1ba{bottom:109.810933pt;}
.yc8{bottom:109.816267pt;}
.y244{bottom:111.864667pt;}
.y1c{bottom:112.396800pt;}
.y85{bottom:112.484267pt;}
.y204{bottom:112.639333pt;}
.y177{bottom:112.680667pt;}
.y134{bottom:113.054267pt;}
.y3f{bottom:113.330400pt;}
.y224{bottom:113.555600pt;}
.y63{bottom:113.595733pt;}
.y1dd{bottom:113.764533pt;}
.y26a{bottom:114.171333pt;}
.yeb{bottom:114.762533pt;}
.y1b9{bottom:125.146933pt;}
.yc7{bottom:125.152267pt;}
.y62{bottom:128.931733pt;}
.ya3{bottom:128.934400pt;}
.y243{bottom:129.291333pt;}
.y1b{bottom:130.290133pt;}
.y203{bottom:130.717333pt;}
.y176{bottom:130.866000pt;}
.y133{bottom:131.362267pt;}
.ya2{bottom:131.597067pt;}
.y269{bottom:132.171333pt;}
.y3e{bottom:132.175067pt;}
.y1dc{bottom:132.977200pt;}
.yea{bottom:134.987200pt;}
.y196{bottom:136.261467pt;}
.y110{bottom:136.510267pt;}
.y223{bottom:139.511600pt;}
.y1b8{bottom:140.482933pt;}
.yc6{bottom:143.150933pt;}
.y242{bottom:146.718000pt;}
.y61{bottom:146.930400pt;}
.y1a{bottom:148.183467pt;}
.y202{bottom:148.795333pt;}
.y175{bottom:149.051333pt;}
.y132{bottom:149.670267pt;}
.y268{bottom:150.171333pt;}
.y3d{bottom:151.019733pt;}
.y84{bottom:151.598000pt;}
.y155{bottom:151.608267pt;}
.y1db{bottom:152.189867pt;}
.y10f{bottom:154.864267pt;}
.ye9{bottom:155.211867pt;}
.y1b7{bottom:155.818933pt;}
.y195{bottom:156.593467pt;}
.y222{bottom:158.663600pt;}
.yc5{bottom:159.587733pt;}
.y60{bottom:163.378000pt;}
.y241{bottom:164.144667pt;}
.y19{bottom:166.076800pt;}
.y201{bottom:166.873333pt;}
.y174{bottom:167.236667pt;}
.y131{bottom:167.978267pt;}
.y267{bottom:168.171333pt;}
.y154{bottom:169.716933pt;}
.y3c{bottom:169.864400pt;}
.y83{bottom:170.182000pt;}
.ya1{bottom:170.703600pt;}
.y1da{bottom:171.402533pt;}
.y10e{bottom:173.218267pt;}
.y1b6{bottom:173.817600pt;}
.yc4{bottom:174.923733pt;}
.ye8{bottom:175.436533pt;}
.y194{bottom:176.925467pt;}
.y5f{bottom:181.376667pt;}
.y240{bottom:181.571333pt;}
.y18{bottom:183.970133pt;}
.y221{bottom:184.619600pt;}
.y200{bottom:184.951333pt;}
.y130{bottom:186.286267pt;}
.y153{bottom:187.825600pt;}
.y3b{bottom:188.709067pt;}
.y82{bottom:188.766000pt;}
.y173{bottom:189.203200pt;}
.yc3{bottom:190.259733pt;}
.ya0{bottom:190.514267pt;}
.y1d9{bottom:190.615200pt;}
.y10d{bottom:191.572267pt;}
.ye7{bottom:195.661200pt;}
.y193{bottom:197.257467pt;}
.y266{bottom:197.504667pt;}
.y23f{bottom:198.998000pt;}
.y17{bottom:201.863467pt;}
.y1ff{bottom:203.029333pt;}
.y220{bottom:203.771600pt;}
.y12f{bottom:204.594267pt;}
.yc2{bottom:205.595733pt;}
.y81{bottom:207.272933pt;}
.y3a{bottom:207.553733pt;}
.y152{bottom:209.712133pt;}
.y1d8{bottom:209.827867pt;}
.y10c{bottom:209.926267pt;}
.y9f{bottom:210.324933pt;}
.y1b5{bottom:213.136133pt;}
.y265{bottom:215.504667pt;}
.ye6{bottom:215.885867pt;}
.y23e{bottom:216.424667pt;}
.y192{bottom:217.589467pt;}
.y16{bottom:219.756800pt;}
.y5e{bottom:220.484000pt;}
.yc1{bottom:220.931733pt;}
.y1fe{bottom:221.107333pt;}
.y12e{bottom:222.902267pt;}
.y80{bottom:225.856933pt;}
.y39{bottom:226.398400pt;}
.y10b{bottom:228.280267pt;}
.y1d7{bottom:229.040533pt;}
.y21f{bottom:229.727600pt;}
.y9e{bottom:230.135600pt;}
.y1b4{bottom:231.168133pt;}
.y264{bottom:233.504667pt;}
.y23d{bottom:233.851333pt;}
.ye5{bottom:236.110533pt;}
.y172{bottom:237.626533pt;}
.y15{bottom:237.650133pt;}
.y191{bottom:237.921467pt;}
.yc0{bottom:238.930400pt;}
.y5d{bottom:239.022000pt;}
.y1fd{bottom:239.185333pt;}
.y12d{bottom:241.210267pt;}
.y7f{bottom:244.440933pt;}
.y38{bottom:245.243067pt;}
.y10a{bottom:246.634267pt;}
.y1d6{bottom:248.253200pt;}
.y21e{bottom:248.879600pt;}
.y1b3{bottom:249.200133pt;}
.y9d{bottom:249.946267pt;}
.y263{bottom:251.504667pt;}
.y14{bottom:255.543467pt;}
.ye4{bottom:256.335200pt;}
.y1fc{bottom:257.263333pt;}
.y5c{bottom:257.560000pt;}
.y151{bottom:258.055467pt;}
.y190{bottom:258.253467pt;}
.y12c{bottom:259.518267pt;}
.y23c{bottom:262.611333pt;}
.y7e{bottom:263.024933pt;}
.y37{bottom:264.087733pt;}
.y109{bottom:264.988267pt;}
.y1b2{bottom:267.232133pt;}
.y1d5{bottom:267.465867pt;}
.y262{bottom:269.504667pt;}
.y21d{bottom:274.835600pt;}
.y1fb{bottom:275.414533pt;}
.y5b{bottom:276.098000pt;}
.ye3{bottom:276.559867pt;}
.y12b{bottom:277.826267pt;}
.ybf{bottom:278.118400pt;}
.y7d{bottom:281.608933pt;}
.y36{bottom:282.932400pt;}
.y108{bottom:283.342267pt;}
.y13{bottom:284.783467pt;}
.y1b1{bottom:285.264133pt;}
.y1d4{bottom:286.678533pt;}
.y9c{bottom:288.649467pt;}
.y171{bottom:293.211867pt;}
.y1fa{bottom:293.492533pt;}
.y21c{bottom:293.987600pt;}
.y5a{bottom:294.636000pt;}
.y12a{bottom:296.134267pt;}
.ybe{bottom:296.656400pt;}
.ye2{bottom:296.784533pt;}
.y18f{bottom:297.480400pt;}
.y261{bottom:298.838000pt;}
.y7c{bottom:300.192933pt;}
.y107{bottom:301.696267pt;}
.y35{bottom:301.777067pt;}
.y1b0{bottom:303.296133pt;}
.y1d3{bottom:305.891200pt;}
.y170{bottom:311.397200pt;}
.y1f9{bottom:311.570533pt;}
.y59{bottom:313.174000pt;}
.y150{bottom:313.498400pt;}
.y23b{bottom:314.061867pt;}
.y129{bottom:314.442267pt;}
.ybd{bottom:315.194400pt;}
.ye1{bottom:317.009200pt;}
.y7b{bottom:318.776933pt;}
.y21b{bottom:319.943600pt;}
.y106{bottom:320.050267pt;}
.y34{bottom:320.621733pt;}
.y1af{bottom:321.328133pt;}
.y1d2{bottom:325.103867pt;}
.y16f{bottom:329.582533pt;}
.y1f8{bottom:329.648533pt;}
.y14f{bottom:331.607067pt;}
.y58{bottom:331.712000pt;}
.y128{bottom:332.750267pt;}
.ybc{bottom:333.732400pt;}
.y260{bottom:335.731333pt;}
.y12{bottom:336.688800pt;}
.ye0{bottom:337.233867pt;}
.y7a{bottom:337.360933pt;}
.y23a{bottom:338.141867pt;}
.y105{bottom:338.404267pt;}
.y21a{bottom:339.095600pt;}
.y1ae{bottom:339.360133pt;}
.y33{bottom:339.466400pt;}
.y1d1{bottom:344.316533pt;}
.y9b{bottom:345.812800pt;}
.y1f7{bottom:347.726533pt;}
.y16e{bottom:347.767867pt;}
.y14e{bottom:349.715733pt;}
.y57{bottom:350.247067pt;}
.y127{bottom:351.058267pt;}
.ybb{bottom:352.270400pt;}
.y25f{bottom:353.064667pt;}
.y18e{bottom:355.139067pt;}
.y79{bottom:355.944933pt;}
.y104{bottom:356.758267pt;}
.y1ad{bottom:357.392133pt;}
.ydf{bottom:357.458533pt;}
.y11{bottom:361.254133pt;}
.y239{bottom:362.221867pt;}
.y1d0{bottom:363.529200pt;}
.y219{bottom:365.051600pt;}
.y1f6{bottom:365.804533pt;}
.y16d{bottom:365.953200pt;}
.y14d{bottom:367.824400pt;}
.y56{bottom:368.779333pt;}
.y9a{bottom:368.942800pt;}
.y126{bottom:369.366267pt;}
.y25e{bottom:370.398000pt;}
.yba{bottom:370.808400pt;}
.y78{bottom:374.528933pt;}
.y103{bottom:375.112267pt;}
.y1ac{bottom:375.424133pt;}
.y18d{bottom:375.471067pt;}
.y32{bottom:377.208533pt;}
.yde{bottom:377.683200pt;}
.y1cf{bottom:382.741867pt;}
.y1f5{bottom:383.882533pt;}
.y16c{bottom:384.138533pt;}
.y218{bottom:384.203600pt;}
.y10{bottom:385.819467pt;}
.y14c{bottom:385.933067pt;}
.y55{bottom:387.317333pt;}
.y125{bottom:387.674267pt;}
.y25d{bottom:387.731333pt;}
.yb9{bottom:389.346400pt;}
.y77{bottom:393.112933pt;}
.y1ab{bottom:393.456133pt;}
.y102{bottom:393.466267pt;}
.y18c{bottom:395.803067pt;}
.ydd{bottom:397.907867pt;}
.y1ce{bottom:401.954533pt;}
.y1f4{bottom:401.960533pt;}
.y16b{bottom:402.323867pt;}
.y14b{bottom:404.041733pt;}
.y25c{bottom:405.064667pt;}
.y238{bottom:405.183867pt;}
.y54{bottom:405.849600pt;}
.y124{bottom:405.982267pt;}
.yb8{bottom:407.884400pt;}
.y217{bottom:410.159600pt;}
.y1aa{bottom:411.488133pt;}
.y76{bottom:411.696933pt;}
.y101{bottom:411.820267pt;}
.y18b{bottom:416.135067pt;}
.ydc{bottom:418.132533pt;}
.y1f3{bottom:420.038533pt;}
.y16a{bottom:420.509200pt;}
.y1cd{bottom:421.167200pt;}
.y14a{bottom:422.150400pt;}
.y25b{bottom:422.398000pt;}
.y123{bottom:424.290267pt;}
.y53{bottom:424.387600pt;}
.y99{bottom:426.055733pt;}
.yb7{bottom:426.422400pt;}
.yf{bottom:429.291200pt;}
.y216{bottom:429.311600pt;}
.y1a9{bottom:429.520133pt;}
.y237{bottom:430.075867pt;}
.y100{bottom:430.174267pt;}
.y75{bottom:430.280933pt;}
.y31{bottom:433.406533pt;}
.y18a{bottom:436.467067pt;}
.y1f2{bottom:438.116533pt;}
.ydb{bottom:438.357200pt;}
.y169{bottom:438.694533pt;}
.y25a{bottom:439.731333pt;}
.y149{bottom:440.259067pt;}
.y1cc{bottom:440.379867pt;}
.y122{bottom:442.598267pt;}
.y52{bottom:442.925600pt;}
.yb6{bottom:444.960400pt;}
.y98{bottom:445.866400pt;}
.y1a8{bottom:447.552133pt;}
.y236{bottom:448.163867pt;}
.y215{bottom:448.463600pt;}
.yff{bottom:448.528267pt;}
.y74{bottom:448.864933pt;}
.y30{bottom:452.913200pt;}
.y1f1{bottom:456.318800pt;}
.y189{bottom:456.799067pt;}
.y168{bottom:456.879867pt;}
.y259{bottom:457.064667pt;}
.ye{bottom:457.851200pt;}
.y148{bottom:458.346400pt;}
.yda{bottom:458.581867pt;}
.y121{bottom:460.906267pt;}
.y1cb{bottom:463.375600pt;}
.yb5{bottom:463.528800pt;}
.y1a7{bottom:465.584133pt;}
.y97{bottom:465.677067pt;}
.yfe{bottom:466.882267pt;}
.y73{bottom:467.448933pt;}
.y2f{bottom:472.464533pt;}
.y235{bottom:473.055867pt;}
.y1f0{bottom:474.396800pt;}
.y258{bottom:474.398000pt;}
.y214{bottom:474.419600pt;}
.y167{bottom:475.065200pt;}
.y147{bottom:476.455067pt;}
.y188{bottom:477.131067pt;}
.yd9{bottom:478.806533pt;}
.y120{bottom:479.214267pt;}
.y51{bottom:480.355333pt;}
.yb4{bottom:482.066800pt;}
.y1a6{bottom:483.616133pt;}
.yfd{bottom:485.236267pt;}
.y96{bottom:485.487733pt;}
.y72{bottom:486.032933pt;}
.yd{bottom:486.411200pt;}
.y2e{bottom:490.637867pt;}
.y234{bottom:491.143867pt;}
.y257{bottom:491.731333pt;}
.y1ef{bottom:492.474800pt;}
.y166{bottom:493.250533pt;}
.y213{bottom:493.571600pt;}
.y146{bottom:494.563733pt;}
.y187{bottom:497.421200pt;}
.y11f{bottom:497.522267pt;}
.yd8{bottom:499.031200pt;}
.yb3{bottom:500.604800pt;}
.y1a5{bottom:501.648133pt;}
.y50{bottom:502.225333pt;}
.yfc{bottom:503.590267pt;}
.y71{bottom:504.616933pt;}
.y95{bottom:505.298400pt;}
.y2d{bottom:508.811200pt;}
.y256{bottom:509.064667pt;}
.y1ca{bottom:509.098000pt;}
.y233{bottom:509.231867pt;}
.y1ee{bottom:510.552800pt;}
.y165{bottom:511.435867pt;}
.y145{bottom:512.672400pt;}
.y212{bottom:512.723600pt;}
.yc{bottom:514.971200pt;}
.y11e{bottom:515.830267pt;}
.y186{bottom:517.753200pt;}
.yb2{bottom:519.142800pt;}
.yd7{bottom:519.255867pt;}
.y1a4{bottom:519.680133pt;}
.yfb{bottom:521.944267pt;}
.y70{bottom:523.200933pt;}
.y4f{bottom:524.095333pt;}
.y94{bottom:525.109067pt;}
.y255{bottom:526.398000pt;}
.y2c{bottom:526.984533pt;}
.y1c9{bottom:528.310667pt;}
.y1ed{bottom:528.630800pt;}
.y164{bottom:529.621200pt;}
.y144{bottom:530.781067pt;}
.y232{bottom:534.123867pt;}
.y11d{bottom:534.138267pt;}
.yb1{bottom:537.680800pt;}
.y1a3{bottom:537.712133pt;}
.y185{bottom:538.085200pt;}
.y211{bottom:538.679600pt;}
.yd6{bottom:539.480533pt;}
.yfa{bottom:540.298267pt;}
.yb{bottom:543.531200pt;}
.y254{bottom:543.731333pt;}
.y93{bottom:544.919733pt;}
.y2b{bottom:545.157867pt;}
.y1ec{bottom:546.708800pt;}
.y1c8{bottom:547.523333pt;}
.y163{bottom:547.806533pt;}
.y143{bottom:548.889733pt;}
.y231{bottom:552.211867pt;}
.y11c{bottom:552.446267pt;}
.y1a2{bottom:555.744133pt;}
.yb0{bottom:556.276267pt;}
.y210{bottom:557.831600pt;}
.y184{bottom:558.417200pt;}
.yf9{bottom:558.652267pt;}
.yd5{bottom:559.705200pt;}
.y6f{bottom:560.678000pt;}
.y253{bottom:561.064667pt;}
.y2a{bottom:563.331200pt;}
.y92{bottom:564.730400pt;}
.y1eb{bottom:564.786800pt;}
.y162{bottom:565.991867pt;}
.y1c7{bottom:566.736000pt;}
.y142{bottom:566.998400pt;}
.y11b{bottom:570.754267pt;}
.ya{bottom:572.091200pt;}
.y1a1{bottom:573.776133pt;}
.yaf{bottom:574.814267pt;}
.y20f{bottom:576.983600pt;}
.yf8{bottom:577.006267pt;}
.y230{bottom:577.103867pt;}
.y252{bottom:578.398000pt;}
.y183{bottom:578.749200pt;}
.yd4{bottom:579.929867pt;}
.y4e{bottom:579.945200pt;}
.y29{bottom:581.504533pt;}
.y1ea{bottom:582.864800pt;}
.y161{bottom:584.177200pt;}
.y91{bottom:584.520267pt;}
.y141{bottom:585.107067pt;}
.y1c6{bottom:585.948667pt;}
.y11a{bottom:589.062267pt;}
.y1a0{bottom:591.808133pt;}
.yae{bottom:593.352267pt;}
.y22f{bottom:595.191867pt;}
.yf7{bottom:595.360267pt;}
.y251{bottom:595.731333pt;}
.y4d{bottom:598.483200pt;}
.y182{bottom:599.081200pt;}
.y28{bottom:599.677867pt;}
.yd3{bottom:600.154533pt;}
.y1e9{bottom:600.942800pt;}
.y160{bottom:602.362533pt;}
.y20e{bottom:602.939600pt;}
.y140{bottom:603.215733pt;}
.y90{bottom:604.330933pt;}
.y1c5{bottom:605.161333pt;}
.y119{bottom:607.370267pt;}
.y19f{bottom:609.840133pt;}
.yad{bottom:611.890267pt;}
.y250{bottom:613.064667pt;}
.yf6{bottom:613.714267pt;}
.y6e{bottom:616.561200pt;}
.y4c{bottom:617.021200pt;}
.y27{bottom:617.851200pt;}
.y1e8{bottom:619.020800pt;}
.y181{bottom:619.413200pt;}
.y22e{bottom:620.083867pt;}
.yd2{bottom:620.379200pt;}
.y15f{bottom:620.547867pt;}
.y13f{bottom:621.324400pt;}
.y8f{bottom:624.141600pt;}
.y1c4{bottom:624.374000pt;}
.y118{bottom:625.678267pt;}
.y9{bottom:627.113867pt;}
.y19e{bottom:627.872133pt;}
.y24f{bottom:630.398000pt;}
.yac{bottom:630.428267pt;}
.yf5{bottom:632.068267pt;}
.y6d{bottom:635.145200pt;}
.y4b{bottom:635.559200pt;}
.y26{bottom:636.024533pt;}
.y1e7{bottom:637.098800pt;}
.y22d{bottom:638.171867pt;}
.y15e{bottom:638.733200pt;}
.y13e{bottom:639.433067pt;}
.y180{bottom:639.745200pt;}
.yd1{bottom:640.603867pt;}
.y1c3{bottom:643.586667pt;}
.y8e{bottom:643.952267pt;}
.y117{bottom:643.986267pt;}
.y19d{bottom:645.904133pt;}
.y8{bottom:646.340533pt;}
.y24e{bottom:647.731333pt;}
.yab{bottom:648.966267pt;}
.y20d{bottom:649.190533pt;}
.yf4{bottom:650.422267pt;}
.y6c{bottom:653.729200pt;}
.y4a{bottom:654.097200pt;}
.y25{bottom:654.197867pt;}
.y1e6{bottom:655.176800pt;}
.y22c{bottom:656.259867pt;}
.y15d{bottom:656.918533pt;}
.y13d{bottom:657.541733pt;}
.y17f{bottom:660.077200pt;}
.yd0{bottom:660.828533pt;}
.y116{bottom:662.294267pt;}
.y1c2{bottom:662.799333pt;}
.y8d{bottom:663.726533pt;}
.y19c{bottom:663.936133pt;}
.y24d{bottom:665.064667pt;}
.y20c{bottom:668.341867pt;}
.yf3{bottom:668.776267pt;}
.y6b{bottom:672.313200pt;}
.y49{bottom:672.635200pt;}
.y7{bottom:673.127200pt;}
.y1e5{bottom:673.254800pt;}
.y22b{bottom:674.347867pt;}
.y15c{bottom:675.103867pt;}
.y13c{bottom:675.650400pt;}
.y17e{bottom:680.409200pt;}
.y115{bottom:680.602267pt;}
.ycf{bottom:681.053200pt;}
.y19b{bottom:681.968133pt;}
.y1c1{bottom:682.012000pt;}
.y24c{bottom:682.398000pt;}
.y8c{bottom:683.537200pt;}
.y24{bottom:683.717867pt;}
.yaa{bottom:686.057600pt;}
.yf2{bottom:687.130267pt;}
.y20b{bottom:687.493200pt;}
.y6a{bottom:690.897200pt;}
.y48{bottom:691.173200pt;}
.y1e4{bottom:691.332800pt;}
.y6{bottom:692.356267pt;}
.y15b{bottom:693.289200pt;}
.y13b{bottom:693.749200pt;}
.y114{bottom:698.910267pt;}
.y22a{bottom:699.239867pt;}
.y24b{bottom:699.731333pt;}
.y17d{bottom:700.741200pt;}
.y1c0{bottom:701.224667pt;}
.yce{bottom:701.277867pt;}
.y8b{bottom:703.347867pt;}
.y19a{bottom:703.787067pt;}
.ya9{bottom:704.595600pt;}
.yf1{bottom:705.514133pt;}
.y20a{bottom:706.644533pt;}
.y1e3{bottom:709.410800pt;}
.y69{bottom:709.481200pt;}
.y47{bottom:709.711200pt;}
.y15a{bottom:711.474533pt;}
.y13a{bottom:711.857867pt;}
.y24a{bottom:717.064667pt;}
.y113{bottom:717.218267pt;}
.y229{bottom:717.327867pt;}
.y1bf{bottom:720.437333pt;}
.y17c{bottom:721.073200pt;}
.ycd{bottom:721.502533pt;}
.ya8{bottom:723.133600pt;}
.y8a{bottom:723.158533pt;}
.yf0{bottom:723.868133pt;}
.y209{bottom:725.795867pt;}
.y1e2{bottom:727.488800pt;}
.y68{bottom:728.065200pt;}
.y46{bottom:728.249200pt;}
.y23{bottom:728.357867pt;}
.y159{bottom:729.659867pt;}
.y139{bottom:729.966533pt;}
.y249{bottom:734.398000pt;}
.y5{bottom:738.045600pt;}
.y112{bottom:739.313333pt;}
.y1be{bottom:739.650000pt;}
.y17b{bottom:741.405200pt;}
.ya7{bottom:741.671600pt;}
.ycc{bottom:741.727200pt;}
.y228{bottom:742.219867pt;}
.yef{bottom:742.222133pt;}
.y89{bottom:742.969200pt;}
.y208{bottom:744.947200pt;}
.y1e1{bottom:745.566800pt;}
.y67{bottom:746.649200pt;}
.y45{bottom:746.787200pt;}
.y158{bottom:747.845200pt;}
.y22{bottom:747.864533pt;}
.y138{bottom:748.075200pt;}
.y199{bottom:748.305200pt;}
.y248{bottom:751.731333pt;}
.y4{bottom:757.272267pt;}
.y1bd{bottom:758.862667pt;}
.ya6{bottom:760.209600pt;}
.y227{bottom:760.307867pt;}
.yee{bottom:760.576133pt;}
.y17a{bottom:761.737200pt;}
.ycb{bottom:761.951867pt;}
.y88{bottom:762.779867pt;}
.y1e0{bottom:763.644800pt;}
.y207{bottom:764.098533pt;}
.y66{bottom:765.233200pt;}
.y44{bottom:765.325200pt;}
.y157{bottom:766.030533pt;}
.y137{bottom:766.183867pt;}
.y198{bottom:766.337200pt;}
.y21{bottom:767.384667pt;}
.y247{bottom:769.064667pt;}
.y1bc{bottom:778.075333pt;}
.ya5{bottom:778.747600pt;}
.yed{bottom:778.930133pt;}
.y179{bottom:782.069200pt;}
.yca{bottom:782.176533pt;}
.y87{bottom:782.590533pt;}
.y206{bottom:783.249867pt;}
.y65{bottom:783.817200pt;}
.y43{bottom:783.863200pt;}
.y3{bottom:784.058933pt;}
.y111{bottom:784.093200pt;}
.y156{bottom:784.215867pt;}
.y136{bottom:784.292533pt;}
.y197{bottom:784.369200pt;}
.y226{bottom:785.199867pt;}
.y20{bottom:785.558000pt;}
.y246{bottom:786.398000pt;}
.y1df{bottom:800.627733pt;}
.ya4{bottom:801.071067pt;}
.y42{bottom:802.401200pt;}
.y2{bottom:803.287867pt;}
.y1f{bottom:803.731333pt;}
.y1e{bottom:842.834667pt;}
.y41{bottom:858.834667pt;}
.h11{height:19.307320pt;}
.hd{height:36.107146pt;}
.ha{height:36.796875pt;}
.h15{height:38.636719pt;}
.h7{height:41.562500pt;}
.he{height:46.757812pt;}
.h16{height:49.322917pt;}
.h4{height:51.953125pt;}
.h3{height:54.550781pt;}
.h9{height:59.746094pt;}
.hc{height:59.757827pt;}
.hb{height:59.769027pt;}
.h10{height:59.829294pt;}
.h13{height:59.831427pt;}
.h14{height:59.913560pt;}
.hf{height:60.054360pt;}
.h2{height:64.941406pt;}
.h12{height:67.539062pt;}
.h8{height:70.136719pt;}
.h6{height:72.734375pt;}
.h5{height:93.515625pt;}
.h0{height:907.086667pt;}
.h1{height:907.333333pt;}
.w0{width:642.520000pt;}
.w1{width:642.666667pt;}
.x0{left:0.000000pt;}
.x9{left:72.381067pt;}
.xd{left:73.297733pt;}
.x5{left:74.388133pt;}
.x1{left:75.590533pt;}
.x4{left:93.360533pt;}
.x6{left:94.559333pt;}
.xc{left:115.851600pt;}
.xb{left:116.955600pt;}
.xa{left:178.654667pt;}
.x8{left:179.861733pt;}
.x7{left:189.034667pt;}
.x3{left:206.101067pt;}
.x2{left:207.676000pt;}
}




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