
    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_e30554ee28be9574b8a412c1.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.031738;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_20ade86fd096fe1f2b8e56e6.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.022461;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_12528cbed3fd8e36d5c13457.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.964861;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_5e24b1b64a29299713e9e2bf.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.136719;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_43c8f3fbd598db30bfb69f81.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.032715;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_4f1b576f241cb978627e0495.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.026855;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_711a6ccd77a1c3602f298be5.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.973633;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_8d0e331cbdffbc673a171ca0.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.976111;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_03458832ffb7b51e2a496e06.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.131836;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_a959c58b3c219c9f59977566.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_d4fa04fe543494c5253312c0.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.964863;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_286ea34c9acefe44a99f9774.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.964376;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_8959c0c00bab9a02925bf6ed.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.968262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe;src:url('chunks/assets/font_711825fb7accef067d1b1c69.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.958556;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:fff;src:url('chunks/assets/font_5e9b9411fabdd9fd1652e74c.woff2')format("woff");}.fff{font-family:fff;line-height:0.929688;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff10;src:url('chunks/assets/font_ae8cf2b137ec01c4687cc8fc.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.730957;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff11;src:url('chunks/assets/font_ad804912819a0f6924e6cc30.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff12;src:url('chunks/assets/font_e06feef7a2a885f147e14182.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff13;src:url('chunks/assets/font_f4e3846f4e8bfa8dcf8411dc.woff2')format("woff");}.ff13{font-family:ff13;line-height:0.893066;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff14;src:url('chunks/assets/font_b763be24dc496c1c59f4828a.woff2')format("woff");}.ff14{font-family:ff14;line-height:0.893555;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;}
.m1{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.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);}
.m2{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:-19.980000px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:18.366000px;}
.v1{vertical-align:21.978000px;}
.ls12{letter-spacing:-7.236000px;}
.ls13{letter-spacing:-3.240000px;}
.lsb{letter-spacing:-1.200000px;}
.lsf{letter-spacing:-0.900000px;}
.ls7{letter-spacing:-0.691200px;}
.lsc{letter-spacing:-0.672000px;}
.ls6{letter-spacing:-0.612000px;}
.lsa{letter-spacing:-0.600000px;}
.ls4{letter-spacing:-0.408000px;}
.lse{letter-spacing:-0.360000px;}
.ls10{letter-spacing:-0.300000px;}
.ls5{letter-spacing:-0.204000px;}
.ls3{letter-spacing:0.000000px;}
.ls9{letter-spacing:0.332640px;}
.ls14{letter-spacing:0.360000px;}
.ls8{letter-spacing:0.510000px;}
.ls15{letter-spacing:0.540000px;}
.ls2{letter-spacing:0.600000px;}
.ls11{letter-spacing:7.668000px;}
.lsd{letter-spacing:8.160000px;}
.ls0{letter-spacing:43.181364px;}
.ls1{letter-spacing:43.181964px;}
.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;}
}
.ws8{word-spacing:-17.928000px;}
.ws86{word-spacing:-16.434000px;}
.wsb1{word-spacing:-15.540000px;}
.wsa{word-spacing:-15.300000px;}
.ws6{word-spacing:-14.940000px;}
.ws9{word-spacing:-14.700000px;}
.wsa1{word-spacing:-14.640000px;}
.ws87{word-spacing:-14.580000px;}
.wsce{word-spacing:-14.340000px;}
.ws2e{word-spacing:-14.100000px;}
.ws88{word-spacing:-14.040000px;}
.ws10d{word-spacing:-13.932000px;}
.ws52{word-spacing:-13.500000px;}
.wsac{word-spacing:-13.446000px;}
.wse6{word-spacing:-13.392000px;}
.ws7{word-spacing:-13.230000px;}
.wsa2{word-spacing:-12.454200px;}
.wsb{word-spacing:-12.366000px;}
.wsd{word-spacing:-12.150000px;}
.wse{word-spacing:-10.992000px;}
.ws4{word-spacing:-10.896000px;}
.ws2c{word-spacing:-10.800000px;}
.wscb{word-spacing:-10.206000px;}
.ws5{word-spacing:-9.892800px;}
.ws3{word-spacing:-9.618000px;}
.ws2{word-spacing:-9.542544px;}
.ws51{word-spacing:-8.675040px;}
.ws126{word-spacing:-7.807536px;}
.wsf1{word-spacing:-5.724000px;}
.ws12a{word-spacing:-5.022000px;}
.ws93{word-spacing:-4.200000px;}
.ws94{word-spacing:-4.140000px;}
.wsa4{word-spacing:-3.600000px;}
.wsa3{word-spacing:-3.120000px;}
.ws134{word-spacing:-2.970000px;}
.ws96{word-spacing:-2.700000px;}
.ws146{word-spacing:-2.646000px;}
.ws2b{word-spacing:-2.640000px;}
.ws5f{word-spacing:-2.580000px;}
.ws118{word-spacing:-2.430000px;}
.ws35{word-spacing:-2.400000px;}
.ws5a{word-spacing:-2.340000px;}
.ws27{word-spacing:-2.280000px;}
.wsd1{word-spacing:-2.220000px;}
.ws5b{word-spacing:-2.100000px;}
.ws10c{word-spacing:-2.052000px;}
.ws63{word-spacing:-2.040000px;}
.wsd8{word-spacing:-1.980000px;}
.ws59{word-spacing:-1.920000px;}
.ws43{word-spacing:-1.860000px;}
.ws157{word-spacing:-1.836000px;}
.ws61{word-spacing:-1.800000px;}
.wsb5{word-spacing:-1.740000px;}
.wscc{word-spacing:-1.728000px;}
.wsdd{word-spacing:-1.680000px;}
.ws144{word-spacing:-1.566000px;}
.ws120{word-spacing:-1.512000px;}
.wsc6{word-spacing:-1.500000px;}
.ws150{word-spacing:-1.458000px;}
.wse3{word-spacing:-1.440000px;}
.ws10e{word-spacing:-1.404000px;}
.wse4{word-spacing:-1.380000px;}
.ws11e{word-spacing:-1.296000px;}
.wscf{word-spacing:-1.260000px;}
.ws10a{word-spacing:-1.242000px;}
.ws10f{word-spacing:-1.188000px;}
.ws101{word-spacing:-1.134000px;}
.ws49{word-spacing:-1.080000px;}
.wsb6{word-spacing:-1.020000px;}
.wsc3{word-spacing:-0.960000px;}
.ws60{word-spacing:-0.900000px;}
.ws13e{word-spacing:-0.864000px;}
.ws65{word-spacing:-0.780000px;}
.ws1d{word-spacing:-0.600000px;}
.ws10b{word-spacing:-0.540000px;}
.ws9c{word-spacing:-0.480000px;}
.wse8{word-spacing:-0.420000px;}
.ws110{word-spacing:-0.378000px;}
.wsea{word-spacing:-0.360000px;}
.ws125{word-spacing:-0.324000px;}
.ws25{word-spacing:-0.300000px;}
.ws95{word-spacing:-0.240000px;}
.ws12{word-spacing:-0.216000px;}
.wsfc{word-spacing:-0.162000px;}
.wsb9{word-spacing:-0.120000px;}
.wse7{word-spacing:-0.060000px;}
.wsc{word-spacing:-0.054000px;}
.ws2d{word-spacing:-0.048000px;}
.wsf{word-spacing:0.000000px;}
.ws113{word-spacing:0.054000px;}
.wsca{word-spacing:0.060000px;}
.ws1{word-spacing:0.102000px;}
.ws18{word-spacing:0.162000px;}
.ws10{word-spacing:0.204000px;}
.ws41{word-spacing:0.240000px;}
.ws11a{word-spacing:0.270000px;}
.wsa7{word-spacing:0.300000px;}
.ws0{word-spacing:0.306000px;}
.ws97{word-spacing:0.360000px;}
.ws11c{word-spacing:0.378000px;}
.wsf7{word-spacing:0.432000px;}
.ws57{word-spacing:0.480000px;}
.ws119{word-spacing:0.486000px;}
.ws58{word-spacing:0.600000px;}
.ws11{word-spacing:0.612000px;}
.ws42{word-spacing:0.660000px;}
.ws13{word-spacing:0.691200px;}
.ws133{word-spacing:0.702000px;}
.ws37{word-spacing:0.720000px;}
.ws117{word-spacing:0.756000px;}
.wse9{word-spacing:0.780000px;}
.ws136{word-spacing:0.810000px;}
.wsb7{word-spacing:0.840000px;}
.ws14e{word-spacing:0.864000px;}
.ws4a{word-spacing:0.900000px;}
.ws21{word-spacing:0.960000px;}
.wsa5{word-spacing:1.080000px;}
.wsba{word-spacing:1.140000px;}
.ws55{word-spacing:1.200000px;}
.ws13a{word-spacing:1.242000px;}
.wsfb{word-spacing:1.350000px;}
.ws13d{word-spacing:1.404000px;}
.ws32{word-spacing:1.500000px;}
.ws17{word-spacing:1.512000px;}
.ws14f{word-spacing:1.620000px;}
.ws1c{word-spacing:1.674000px;}
.ws56{word-spacing:1.680000px;}
.ws112{word-spacing:1.728000px;}
.ws4c{word-spacing:1.740000px;}
.ws29{word-spacing:1.800000px;}
.ws16{word-spacing:1.836000px;}
.wsff{word-spacing:1.998000px;}
.wsd9{word-spacing:2.160000px;}
.ws106{word-spacing:2.214000px;}
.ws4d{word-spacing:2.220000px;}
.ws140{word-spacing:2.322000px;}
.ws111{word-spacing:2.376000px;}
.ws48{word-spacing:2.400000px;}
.ws13b{word-spacing:2.430000px;}
.ws123{word-spacing:2.484000px;}
.ws5d{word-spacing:2.520000px;}
.ws107{word-spacing:2.538000px;}
.ws1f{word-spacing:2.580000px;}
.ws45{word-spacing:2.700000px;}
.ws109{word-spacing:2.808000px;}
.wsdc{word-spacing:2.820000px;}
.ws104{word-spacing:2.862000px;}
.wsdb{word-spacing:2.880000px;}
.ws26{word-spacing:2.940000px;}
.wsf0{word-spacing:2.970000px;}
.wsf2{word-spacing:3.024000px;}
.wsf5{word-spacing:3.078000px;}
.ws54{word-spacing:3.180000px;}
.ws1b{word-spacing:3.186000px;}
.ws12f{word-spacing:3.294000px;}
.wsb8{word-spacing:3.300000px;}
.ws143{word-spacing:3.348000px;}
.ws4b{word-spacing:3.420000px;}
.ws115{word-spacing:3.456000px;}
.wsa6{word-spacing:3.480000px;}
.ws62{word-spacing:3.540000px;}
.ws98{word-spacing:3.600000px;}
.ws19{word-spacing:3.672000px;}
.ws1a{word-spacing:3.726000px;}
.ws3e{word-spacing:3.780000px;}
.ws50{word-spacing:3.900000px;}
.ws159{word-spacing:3.942000px;}
.wsd5{word-spacing:3.960000px;}
.wsd3{word-spacing:4.020000px;}
.ws103{word-spacing:4.050000px;}
.ws135{word-spacing:4.158000px;}
.ws4f{word-spacing:4.200000px;}
.ws141{word-spacing:4.212000px;}
.ws3d{word-spacing:4.260000px;}
.wsf9{word-spacing:4.266000px;}
.ws3c{word-spacing:4.320000px;}
.wsaa{word-spacing:4.374000px;}
.ws9d{word-spacing:4.440000px;}
.ws1e{word-spacing:4.560000px;}
.wsc4{word-spacing:4.680000px;}
.ws5c{word-spacing:4.740000px;}
.wsaf{word-spacing:4.752000px;}
.wsc2{word-spacing:4.800000px;}
.ws3f{word-spacing:4.860000px;}
.ws44{word-spacing:4.980000px;}
.ws14b{word-spacing:5.076000px;}
.wsc1{word-spacing:5.220000px;}
.ws24{word-spacing:5.280000px;}
.ws40{word-spacing:5.340000px;}
.wse1{word-spacing:5.400000px;}
.wse2{word-spacing:5.460000px;}
.ws105{word-spacing:5.616000px;}
.ws9f{word-spacing:5.640000px;}
.wsde{word-spacing:5.700000px;}
.ws102{word-spacing:5.724000px;}
.ws132{word-spacing:5.778000px;}
.ws114{word-spacing:5.832000px;}
.wsbb{word-spacing:5.880000px;}
.ws108{word-spacing:5.886000px;}
.wse5{word-spacing:6.000000px;}
.ws121{word-spacing:6.048000px;}
.ws3a{word-spacing:6.060000px;}
.wscd{word-spacing:6.102000px;}
.ws34{word-spacing:6.120000px;}
.ws128{word-spacing:6.156000px;}
.wsd6{word-spacing:6.240000px;}
.ws20{word-spacing:6.300000px;}
.ws28{word-spacing:6.360000px;}
.wseb{word-spacing:6.372000px;}
.ws3b{word-spacing:6.420000px;}
.ws23{word-spacing:6.480000px;}
.wsd4{word-spacing:6.600000px;}
.ws152{word-spacing:6.696000px;}
.ws53{word-spacing:6.720000px;}
.ws12c{word-spacing:6.750000px;}
.ws11d{word-spacing:6.804000px;}
.wsfa{word-spacing:6.858000px;}
.wsf4{word-spacing:6.912000px;}
.ws116{word-spacing:6.966000px;}
.wsab{word-spacing:7.020000px;}
.wsec{word-spacing:7.074000px;}
.wsc0{word-spacing:7.080000px;}
.wsc8{word-spacing:7.140000px;}
.ws122{word-spacing:7.182000px;}
.wsb0{word-spacing:7.236000px;}
.ws36{word-spacing:7.260000px;}
.ws22{word-spacing:7.320000px;}
.ws66{word-spacing:7.440000px;}
.wsee{word-spacing:7.560000px;}
.wsae{word-spacing:7.614000px;}
.ws99{word-spacing:7.620000px;}
.ws148{word-spacing:7.668000px;}
.wsad{word-spacing:7.722000px;}
.ws64{word-spacing:7.800000px;}
.wsda{word-spacing:7.860000px;}
.wsef{word-spacing:7.884000px;}
.wsa0{word-spacing:7.980000px;}
.wsa9{word-spacing:8.040000px;}
.ws154{word-spacing:8.046000px;}
.ws9a{word-spacing:8.100000px;}
.ws9b{word-spacing:8.160000px;}
.ws12b{word-spacing:8.208000px;}
.wsc5{word-spacing:8.220000px;}
.ws151{word-spacing:8.370000px;}
.wsbc{word-spacing:8.460000px;}
.ws13c{word-spacing:8.478000px;}
.wsd7{word-spacing:8.520000px;}
.ws4e{word-spacing:8.580000px;}
.ws14a{word-spacing:8.640000px;}
.ws15{word-spacing:8.748000px;}
.ws31{word-spacing:8.760000px;}
.ws47{word-spacing:8.820000px;}
.ws14{word-spacing:8.856000px;}
.ws38{word-spacing:8.880000px;}
.wsbe{word-spacing:8.940000px;}
.wsbd{word-spacing:9.060000px;}
.wsd0{word-spacing:9.120000px;}
.wsf3{word-spacing:9.126000px;}
.wsc9{word-spacing:9.180000px;}
.wsd2{word-spacing:9.240000px;}
.ws5e{word-spacing:9.300000px;}
.ws142{word-spacing:9.504000px;}
.wsc7{word-spacing:9.660000px;}
.ws13f{word-spacing:9.666000px;}
.ws147{word-spacing:9.720000px;}
.ws12e{word-spacing:9.828000px;}
.wsa8{word-spacing:9.900000px;}
.wse0{word-spacing:10.020000px;}
.wsed{word-spacing:10.098000px;}
.wsdf{word-spacing:10.140000px;}
.ws145{word-spacing:10.152000px;}
.ws30{word-spacing:10.560000px;}
.wsfd{word-spacing:10.638000px;}
.ws2f{word-spacing:10.860000px;}
.ws14c{word-spacing:11.016000px;}
.wsbf{word-spacing:11.100000px;}
.wsb4{word-spacing:11.340000px;}
.ws14d{word-spacing:11.448000px;}
.ws139{word-spacing:11.988000px;}
.ws39{word-spacing:12.300000px;}
.ws33{word-spacing:12.840000px;}
.ws67{word-spacing:13.260000px;}
.ws46{word-spacing:13.320000px;}
.ws130{word-spacing:13.608000px;}
.ws153{word-spacing:14.364000px;}
.wsb3{word-spacing:14.640000px;}
.wsb2{word-spacing:14.700000px;}
.ws11f{word-spacing:15.336000px;}
.wsf8{word-spacing:15.606000px;}
.ws124{word-spacing:16.416000px;}
.ws156{word-spacing:16.524000px;}
.ws155{word-spacing:16.686000px;}
.ws149{word-spacing:16.794000px;}
.ws100{word-spacing:17.226000px;}
.ws2a{word-spacing:17.940000px;}
.ws12d{word-spacing:18.468000px;}
.ws131{word-spacing:18.630000px;}
.ws158{word-spacing:19.548000px;}
.ws11b{word-spacing:19.926000px;}
.ws127{word-spacing:20.574000px;}
.ws129{word-spacing:21.546000px;}
.ws9e{word-spacing:22.380000px;}
.wsfe{word-spacing:22.950000px;}
.wsf6{word-spacing:27.486000px;}
.ws138{word-spacing:31.644000px;}
.ws137{word-spacing:43.200000px;}
.ws79{word-spacing:79.488000px;}
.ws6b{word-spacing:104.880000px;}
.ws75{word-spacing:107.424000px;}
.ws69{word-spacing:116.976000px;}
.ws89{word-spacing:121.248000px;}
.ws8b{word-spacing:128.155200px;}
.ws7f{word-spacing:128.784000px;}
.ws85{word-spacing:129.312000px;}
.ws74{word-spacing:131.289600px;}
.ws7b{word-spacing:131.520000px;}
.ws6d{word-spacing:132.384000px;}
.ws78{word-spacing:132.960000px;}
.ws81{word-spacing:133.872000px;}
.ws72{word-spacing:180.768000px;}
.ws92{word-spacing:194.256000px;}
.ws6a{word-spacing:207.792000px;}
.ws6e{word-spacing:211.296000px;}
.ws71{word-spacing:218.688000px;}
.ws8e{word-spacing:219.076800px;}
.ws7d{word-spacing:219.792000px;}
.ws70{word-spacing:220.368000px;}
.ws77{word-spacing:222.720000px;}
.ws83{word-spacing:224.016000px;}
.ws80{word-spacing:224.592000px;}
.ws90{word-spacing:224.640000px;}
.ws8d{word-spacing:228.576000px;}
.ws7c{word-spacing:232.656000px;}
.ws6c{word-spacing:233.856000px;}
.ws6f{word-spacing:237.700800px;}
.ws82{word-spacing:238.800000px;}
.ws8c{word-spacing:240.854400px;}
.ws91{word-spacing:242.563200px;}
.ws84{word-spacing:243.945600px;}
.ws7e{word-spacing:253.824000px;}
.ws8a{word-spacing:257.616000px;}
.ws73{word-spacing:259.680000px;}
.ws7a{word-spacing:266.400000px;}
.ws68{word-spacing:276.619200px;}
.ws76{word-spacing:285.796800px;}
.ws8f{word-spacing:297.120000px;}
._9{margin-left:-10.650000px;}
._0{margin-left:-8.904600px;}
._c{margin-left:-7.746000px;}
._d{margin-left:-6.496200px;}
._3{margin-left:-4.885800px;}
._5{margin-left:-3.177600px;}
._1{margin-left:-1.734000px;}
._2{width:1.795200px;}
._b{width:3.696000px;}
._73{width:4.792200px;}
._8{width:5.835600px;}
._7{width:6.840000px;}
._6{width:7.998000px;}
._a{width:9.360000px;}
._76{width:10.638000px;}
._78{width:11.730000px;}
._77{width:20.904000px;}
._4{width:36.369600px;}
._75{width:42.209400px;}
._74{width:43.244400px;}
._4f{width:95.424000px;}
._50{width:102.576000px;}
._5d{width:123.408000px;}
._13{width:130.752000px;}
._1c{width:135.024000px;}
._59{width:136.272000px;}
._1a{width:138.912000px;}
._57{width:140.220000px;}
._6e{width:141.993600px;}
._14{width:143.760000px;}
._22{width:147.840000px;}
._2c{width:150.038400px;}
._61{width:152.293800px;}
._5e{width:154.032000px;}
._1b{width:155.184000px;}
._4c{width:156.576000px;}
._56{width:158.304000px;}
._60{width:161.712000px;}
._4a{width:164.832000px;}
._6f{width:165.936000px;}
._33{width:168.672000px;}
._27{width:171.744000px;}
._26{width:173.856000px;}
._f{width:176.208000px;}
._47{width:178.848000px;}
._46{width:181.488000px;}
._6d{width:184.896000px;}
._3b{width:185.904000px;}
._3e{width:188.688000px;}
._6c{width:191.760000px;}
._67{width:194.496000px;}
._6b{width:197.040000px;}
._5b{width:200.406600px;}
._23{width:211.296000px;}
._1d{width:212.592000px;}
._2a{width:215.136000px;}
._37{width:220.656000px;}
._41{width:223.872000px;}
._43{width:225.360000px;}
._20{width:227.088000px;}
._2e{width:230.640000px;}
._30{width:238.032000px;}
._18{width:241.968000px;}
._64{width:243.657600px;}
._29{width:244.944000px;}
._17{width:246.768000px;}
._e{width:248.736000px;}
._25{width:251.424000px;}
._1f{width:252.912000px;}
._31{width:256.698000px;}
._54{width:260.304000px;}
._58{width:261.456000px;}
._36{width:264.480000px;}
._55{width:266.496000px;}
._71{width:270.240000px;}
._40{width:271.872000px;}
._12{width:273.648000px;}
._42{width:275.376000px;}
._10{width:277.254000px;}
._5a{width:281.088000px;}
._62{width:282.538800px;}
._38{width:283.632000px;}
._11{width:285.604800px;}
._2f{width:287.136000px;}
._28{width:293.280000px;}
._49{width:297.456000px;}
._35{width:299.530800px;}
._52{width:300.816000px;}
._3d{width:306.342000px;}
._68{width:308.304000px;}
._1e{width:309.648000px;}
._2d{width:317.136000px;}
._53{width:318.912000px;}
._4e{width:320.160000px;}
._4b{width:328.800000px;}
._6a{width:336.870000px;}
._2b{width:341.568000px;}
._69{width:343.488000px;}
._3a{width:348.288000px;}
._51{width:351.552000px;}
._16{width:354.768000px;}
._39{width:363.024000px;}
._34{width:374.496000px;}
._45{width:376.272000px;}
._5c{width:382.368000px;}
._48{width:389.136000px;}
._5f{width:395.760000px;}
._21{width:398.496000px;}
._32{width:406.560000px;}
._24{width:407.664000px;}
._65{width:409.392000px;}
._19{width:416.160000px;}
._63{width:418.416000px;}
._66{width:422.784000px;}
._44{width:424.464000px;}
._15{width:446.544000px;}
._3c{width:449.232000px;}
._4d{width:464.064000px;}
._70{width:471.840000px;}
._72{width:490.416000px;}
._3f{width:499.632000px;}
.fce{color:rgb(243,161,18);}
.fc0{color:rgb(35,31,32);}
.fcf{color:transparent;}
.fc1{color:rgb(70,71,49);}
.fc2{color:rgb(109,111,79);}
.fc3{color:rgb(255,255,255);}
.fc4{color:rgb(16,15,13);}
.fc6{color:rgb(81,197,192);}
.fc7{color:rgb(71,146,214);}
.fc8{color:rgb(43,56,150);}
.fcd{color:rgb(219,24,63);}
.fca{color:rgb(53,66,160);}
.fc9{color:rgb(59,36,103);}
.fcb{color:rgb(166,55,161);}
.fc5{color:rgb(56,180,62);}
.fcc{color:rgb(198,55,34);}
.fsd{font-size:28.021800px;}
.fsa{font-size:31.135800px;}
.fs11{font-size:31.482000px;}
.fs9{font-size:34.980000px;}
.fs3{font-size:38.478000px;}
.fs4{font-size:42.000000px;}
.fs5{font-size:43.200000px;}
.fsc{font-size:45.146400px;}
.fsb{font-size:46.703400px;}
.fs0{font-size:48.000000px;}
.fse{font-size:49.816800px;}
.fs6{font-size:54.000000px;}
.fs10{font-size:56.044200px;}
.fs7{font-size:60.000000px;}
.fsf{font-size:62.271000px;}
.fs2{font-size:66.000000px;}
.fs8{font-size:72.000000px;}
.fs1{font-size:102.000000px;}
.y0{bottom:0.000000px;}
.ycb{bottom:2.296800px;}
.y102{bottom:24.518850px;}
.yea{bottom:33.688050px;}
.y1{bottom:68.124750px;}
.y3a{bottom:71.212050px;}
.y3b{bottom:75.040050px;}
.y1ca{bottom:112.790850px;}
.y19a{bottom:112.820700px;}
.y1ea{bottom:112.886850px;}
.yc6{bottom:113.078700px;}
.y6a{bottom:113.078850px;}
.yc{bottom:117.205050px;}
.y2b{bottom:117.212550px;}
.y9f{bottom:119.608950px;}
.y153{bottom:120.491700px;}
.y156{bottom:120.491850px;}
.yb{bottom:131.601450px;}
.y1c9{bottom:133.796850px;}
.y199{bottom:133.826700px;}
.y1e9{bottom:133.892850px;}
.y16b{bottom:134.072850px;}
.yc5{bottom:134.078700px;}
.y69{bottom:134.078850px;}
.y2a{bottom:138.212550px;}
.y152{bottom:140.296200px;}
.y155{bottom:140.296350px;}
.y9e{bottom:142.684950px;}
.ya{bottom:145.997850px;}
.y1c8{bottom:154.802850px;}
.y198{bottom:154.832700px;}
.y1e8{bottom:154.898850px;}
.y16a{bottom:155.072850px;}
.yc4{bottom:155.078700px;}
.y68{bottom:155.078850px;}
.y29{bottom:159.212550px;}
.y151{bottom:160.100700px;}
.y154{bottom:160.100850px;}
.y9{bottom:160.397850px;}
.y9d{bottom:165.760950px;}
.y1c7{bottom:175.808850px;}
.y197{bottom:175.838700px;}
.y1e7{bottom:175.904850px;}
.y169{bottom:176.072850px;}
.yc3{bottom:176.078700px;}
.y67{bottom:176.078850px;}
.y28{bottom:180.212550px;}
.y9c{bottom:188.836950px;}
.y1c6{bottom:196.814850px;}
.y196{bottom:196.844700px;}
.y1e6{bottom:196.910850px;}
.yc2{bottom:197.078700px;}
.y66{bottom:197.078850px;}
.y27{bottom:201.212550px;}
.y37{bottom:203.447400px;}
.y9b{bottom:211.912950px;}
.y1c5{bottom:217.820850px;}
.y195{bottom:217.850700px;}
.y1e5{bottom:217.916850px;}
.yc1{bottom:218.078700px;}
.y65{bottom:218.078850px;}
.y36{bottom:221.442900px;}
.y26{bottom:222.212550px;}
.y168{bottom:223.529400px;}
.y9a{bottom:234.988950px;}
.y1c4{bottom:238.826850px;}
.y194{bottom:238.856700px;}
.y1e4{bottom:238.922850px;}
.yc0{bottom:239.078700px;}
.y64{bottom:239.078850px;}
.y35{bottom:239.438400px;}
.y25{bottom:243.212550px;}
.y73{bottom:252.513600px;}
.y34{bottom:257.433900px;}
.y99{bottom:258.064950px;}
.y1c3{bottom:259.832850px;}
.y193{bottom:259.862700px;}
.y1e3{bottom:259.928850px;}
.y167{bottom:260.042850px;}
.ybf{bottom:260.078700px;}
.y63{bottom:260.078850px;}
.y24{bottom:264.212550px;}
.y33{bottom:275.429400px;}
.y1c2{bottom:280.838850px;}
.y192{bottom:280.868700px;}
.y1e2{bottom:280.934850px;}
.y166{bottom:281.048850px;}
.ybe{bottom:281.078700px;}
.y62{bottom:281.078850px;}
.y98{bottom:281.140950px;}
.y72{bottom:284.811000px;}
.y23{bottom:285.212550px;}
.y32{bottom:293.424900px;}
.y1c1{bottom:301.844850px;}
.y191{bottom:301.874700px;}
.y1e1{bottom:301.940850px;}
.y165{bottom:302.054850px;}
.ybd{bottom:302.078700px;}
.y61{bottom:302.078850px;}
.y97{bottom:304.216950px;}
.y22{bottom:306.212550px;}
.y31{bottom:311.420400px;}
.y1c0{bottom:322.850850px;}
.y190{bottom:322.880700px;}
.y1e0{bottom:322.946850px;}
.y164{bottom:323.060850px;}
.ybc{bottom:323.078700px;}
.y60{bottom:323.078850px;}
.y21{bottom:327.212550px;}
.y96{bottom:327.292950px;}
.y30{bottom:329.415900px;}
.y1bf{bottom:343.856850px;}
.y18f{bottom:343.886700px;}
.y1df{bottom:343.952850px;}
.y163{bottom:344.066850px;}
.ybb{bottom:344.078700px;}
.y5f{bottom:344.078850px;}
.y20{bottom:348.212550px;}
.y95{bottom:350.368950px;}
.y2f{bottom:364.421400px;}
.y1be{bottom:364.862850px;}
.y18e{bottom:364.892700px;}
.y1de{bottom:364.958850px;}
.y162{bottom:365.072850px;}
.yba{bottom:365.078700px;}
.y5e{bottom:365.078850px;}
.y1f{bottom:369.212550px;}
.y94{bottom:373.444950px;}
.y157{bottom:379.441050px;}
.y2e{bottom:382.421400px;}
.y1bd{bottom:385.868850px;}
.y18d{bottom:385.898700px;}
.y1dd{bottom:385.964850px;}
.yb9{bottom:386.078700px;}
.y5d{bottom:386.078850px;}
.y1e{bottom:390.212550px;}
.y93{bottom:396.520950px;}
.y2d{bottom:400.421400px;}
.y1bc{bottom:406.874850px;}
.y18c{bottom:406.904700px;}
.y1dc{bottom:406.970850px;}
.yb8{bottom:407.078700px;}
.y5c{bottom:407.078850px;}
.y1d{bottom:411.212550px;}
.y161{bottom:412.529400px;}
.y2c{bottom:418.421400px;}
.y92{bottom:419.596950px;}
.y1bb{bottom:427.880850px;}
.y18b{bottom:427.910700px;}
.y1db{bottom:427.976850px;}
.yb7{bottom:428.078700px;}
.y5b{bottom:428.078850px;}
.y1c{bottom:432.212550px;}
.y91{bottom:442.672950px;}
.y1ba{bottom:448.886850px;}
.y18a{bottom:448.916700px;}
.y1da{bottom:448.982850px;}
.y160{bottom:449.060850px;}
.y5a{bottom:449.078850px;}
.y1b{bottom:453.212550px;}
.y90{bottom:465.748950px;}
.y1b9{bottom:469.892850px;}
.y189{bottom:469.922700px;}
.y1d9{bottom:469.988850px;}
.y15f{bottom:470.066850px;}
.y59{bottom:470.078850px;}
.y1a{bottom:474.212550px;}
.yc9{bottom:485.679450px;}
.y8f{bottom:488.824950px;}
.y1b8{bottom:490.898850px;}
.y188{bottom:490.928700px;}
.y1d8{bottom:490.994850px;}
.y15e{bottom:491.072850px;}
.y58{bottom:491.078850px;}
.ya0{bottom:505.441050px;}
.yc8{bottom:505.483950px;}
.y19{bottom:508.604250px;}
.y8e{bottom:511.900950px;}
.y1b7{bottom:511.904850px;}
.y187{bottom:511.934700px;}
.y1d7{bottom:512.000850px;}
.y57{bottom:512.078850px;}
.yc7{bottom:525.288450px;}
.y1b6{bottom:532.910850px;}
.y186{bottom:532.940700px;}
.y1d6{bottom:533.006850px;}
.y71{bottom:533.078850px;}
.y8d{bottom:534.976950px;}
.y15d{bottom:538.529400px;}
.y56{bottom:546.513600px;}
.yca{bottom:547.495500px;}
.y1b5{bottom:553.916850px;}
.y185{bottom:553.946700px;}
.y1d5{bottom:554.012850px;}
.y70{bottom:554.078850px;}
.y8c{bottom:558.052950px;}
.y14b{bottom:569.489824px;}
.y101{bottom:572.001594px;}
.y1b4{bottom:574.922850px;}
.y184{bottom:574.952700px;}
.y1d4{bottom:575.018850px;}
.y6f{bottom:575.078850px;}
.y55{bottom:578.811150px;}
.y18{bottom:580.627950px;}
.y8b{bottom:581.128950px;}
.ye9{bottom:581.198161px;}
.y149{bottom:582.494850px;}
.y103{bottom:583.790700px;}
.y111{bottom:585.490398px;}
.ye8{bottom:590.363703px;}
.y124{bottom:592.236646px;}
.y1b3{bottom:595.928850px;}
.y183{bottom:595.958700px;}
.y1d3{bottom:596.024850px;}
.y6e{bottom:596.078850px;}
.y12d{bottom:598.464491px;}
.yf7{bottom:599.498220px;}
.y15c{bottom:601.529400px;}
.y8a{bottom:604.204950px;}
.ycd{bottom:608.683112px;}
.y148{bottom:608.693483px;}
.y1b2{bottom:616.934850px;}
.y182{bottom:616.964700px;}
.y1d2{bottom:617.030850px;}
.y6d{bottom:617.078850px;}
.yf9{bottom:617.840981px;}
.y147{bottom:618.233400px;}
.y126{bottom:621.344291px;}
.y17{bottom:621.651750px;}
.ye5{bottom:627.037548px;}
.y89{bottom:627.280950px;}
.y10c{bottom:629.582700px;}
.yef{bottom:636.195417px;}
.y1b1{bottom:637.940850px;}
.y146{bottom:637.943250px;}
.y11c{bottom:637.947207px;}
.y181{bottom:637.970700px;}
.y1d1{bottom:638.036850px;}
.y54{bottom:638.078850px;}
.y16{bottom:641.456250px;}
.y11e{bottom:644.308156px;}
.yde{bottom:645.356957px;}
.y88{bottom:650.356950px;}
.yb6{bottom:651.406800px;}
.yf3{bottom:654.526501px;}
.y1b0{bottom:658.946850px;}
.y180{bottom:658.976700px;}
.y1d0{bottom:659.042850px;}
.y53{bottom:659.078850px;}
.y15{bottom:661.260750px;}
.yf6{bottom:663.680368px;}
.y150{bottom:663.703914px;}
.y15b{bottom:664.529400px;}
.ye3{bottom:672.876935px;}
.y87{bottom:673.432950px;}
.yb5{bottom:674.482800px;}
.y1af{bottom:679.952850px;}
.y17f{bottom:679.982700px;}
.y1cf{bottom:680.048850px;}
.y52{bottom:680.078850px;}
.y14{bottom:681.065250px;}
.yd5{bottom:682.030801px;}
.y145{bottom:682.035382px;}
.y14a{bottom:685.921650px;}
.ye1{bottom:691.208020px;}
.y123{bottom:691.209644px;}
.y6c{bottom:694.441050px;}
.y86{bottom:696.508950px;}
.yb4{bottom:697.558800px;}
.y11d{bottom:699.321955px;}
.ye4{bottom:700.385238px;}
.y13{bottom:700.869750px;}
.y1ae{bottom:700.958850px;}
.y17e{bottom:700.988700px;}
.y1ce{bottom:701.054850px;}
.y51{bottom:701.078850px;}
.y144{bottom:702.696900px;}
.y10d{bottom:702.789652px;}
.y110{bottom:708.485083px;}
.ydd{bottom:709.539104px;}
.y130{bottom:715.175288px;}
.yf0{bottom:718.708649px;}
.y143{bottom:718.709400px;}
.y85{bottom:719.584950px;}
.yb3{bottom:720.634800px;}
.y12{bottom:720.674250px;}
.y1ad{bottom:721.964850px;}
.y17d{bottom:721.994700px;}
.y1cd{bottom:722.060850px;}
.y50{bottom:722.078850px;}
.y106{bottom:727.874805px;}
.y142{bottom:727.879762px;}
.y15a{bottom:727.937100px;}
.y11f{bottom:730.349093px;}
.ye6{bottom:737.059083px;}
.y125{bottom:739.260025px;}
.y141{bottom:740.446050px;}
.y11{bottom:740.478750px;}
.y84{bottom:742.660950px;}
.y1ac{bottom:742.970850px;}
.y17c{bottom:743.000700px;}
.y1cc{bottom:743.066850px;}
.y4f{bottom:743.078850px;}
.yb2{bottom:743.710800px;}
.y117{bottom:745.165620px;}
.y107{bottom:746.205890px;}
.y108{bottom:755.371432px;}
.y127{bottom:756.430383px;}
.y159{bottom:757.441050px;}
.y140{bottom:757.550850px;}
.y10{bottom:760.283250px;}
.y1ab{bottom:763.976850px;}
.y17b{bottom:764.006700px;}
.y1cb{bottom:764.072850px;}
.y4e{bottom:764.078850px;}
.y104{bottom:764.548650px;}
.y83{bottom:765.736950px;}
.yb1{bottom:766.786800px;}
.y121{bottom:772.662011px;}
.yfc{bottom:773.701902px;}
.yf{bottom:780.087750px;}
.y131{bottom:781.839150px;}
.yd0{bottom:782.886794px;}
.y1aa{bottom:784.982850px;}
.y17a{bottom:785.012700px;}
.y4d{bottom:785.078850px;}
.y82{bottom:788.812950px;}
.yb0{bottom:789.862800px;}
.y13f{bottom:791.002200px;}
.yd9{bottom:792.052336px;}
.y13e{bottom:800.229059px;}
.y10b{bottom:801.199143px;}
.y1a9{bottom:805.988850px;}
.y179{bottom:806.018700px;}
.y4c{bottom:806.078850px;}
.y13d{bottom:809.395350px;}
.ye0{bottom:810.395096px;}
.ye{bottom:811.185300px;}
.y81{bottom:811.888950px;}
.yaf{bottom:812.938800px;}
.y100{bottom:819.552965px;}
.y13c{bottom:819.603000px;}
.y1a8{bottom:826.994850px;}
.y178{bottom:827.024700px;}
.y4b{bottom:827.078850px;}
.ydb{bottom:828.726181px;}
.y12e{bottom:830.232799px;}
.y80{bottom:834.964950px;}
.yae{bottom:836.014800px;}
.yff{bottom:837.884050px;}
.y10f{bottom:837.896761px;}
.y12b{bottom:845.812920px;}
.yd8{bottom:847.057265px;}
.y1a7{bottom:848.000850px;}
.y177{bottom:848.030700px;}
.y4a{bottom:848.078850px;}
.y13b{bottom:849.250350px;}
.y116{bottom:855.186212px;}
.yfa{bottom:856.215134px;}
.y7f{bottom:858.040950px;}
.yad{bottom:859.090800px;}
.yfd{bottom:865.392353px;}
.y14d{bottom:865.404450px;}
.y1a6{bottom:869.006850px;}
.y176{bottom:869.036700px;}
.y49{bottom:869.078850px;}
.yf5{bottom:874.557895px;}
.y13a{bottom:874.569900px;}
.y128{bottom:879.046774px;}
.y7e{bottom:881.116950px;}
.yac{bottom:882.166800px;}
.ye7{bottom:883.754462px;}
.y1a5{bottom:890.012850px;}
.y175{bottom:890.042700px;}
.y48{bottom:890.078850px;}
.y139{bottom:890.386800px;}
.y8{bottom:890.466750px;}
.y114{bottom:891.915786px;}
.ydc{bottom:892.908328px;}
.y10e{bottom:901.022871px;}
.yec{bottom:902.077873px;}
.y7d{bottom:904.192950px;}
.y158{bottom:904.441050px;}
.yab{bottom:905.242800px;}
.y7{bottom:908.466750px;}
.y1a4{bottom:911.018850px;}
.y174{bottom:911.048700px;}
.y47{bottom:911.078850px;}
.yd3{bottom:911.239413px;}
.y138{bottom:911.243550px;}
.y115{bottom:919.363139px;}
.y105{bottom:920.409572px;}
.y6{bottom:926.466750px;}
.y7c{bottom:927.268950px;}
.yaa{bottom:928.318800px;}
.yd2{bottom:929.582173px;}
.y1a3{bottom:932.024850px;}
.y173{bottom:932.054700px;}
.y46{bottom:932.078850px;}
.yee{bottom:938.751718px;}
.y12a{bottom:940.400506px;}
.y5{bottom:944.466750px;}
.y129{bottom:946.866536px;}
.yf1{bottom:947.917260px;}
.y7b{bottom:950.344950px;}
.ya9{bottom:951.394800px;}
.y1a2{bottom:953.030850px;}
.y172{bottom:953.060700px;}
.y45{bottom:953.078850px;}
.yd7{bottom:957.078800px;}
.yf8{bottom:966.236669px;}
.y14f{bottom:966.260215px;}
.y7a{bottom:973.420950px;}
.y1a1{bottom:974.036850px;}
.y171{bottom:974.066700px;}
.y44{bottom:974.078850px;}
.ya8{bottom:974.470800px;}
.y10a{bottom:975.402825px;}
.y137{bottom:978.363900px;}
.y4{bottom:979.474800px;}
.y12f{bottom:983.540067px;}
.yed{bottom:984.591105px;}
.y14e{bottom:984.591300px;}
.yd6{bottom:993.752645px;}
.y1a0{bottom:995.042850px;}
.y170{bottom:995.072700px;}
.y43{bottom:995.078850px;}
.y79{bottom:996.496950px;}
.y136{bottom:996.550350px;}
.ya7{bottom:997.546800px;}
.y120{bottom:1001.782258px;}
.yfe{bottom:1002.922190px;}
.y135{bottom:1010.445309px;}
.yd4{bottom:1012.095405px;}
.y19f{bottom:1016.048850px;}
.y16f{bottom:1016.078700px;}
.y42{bottom:1016.078850px;}
.y3{bottom:1016.285550px;}
.y119{bottom:1017.173232px;}
.y78{bottom:1019.572950px;}
.y14c{bottom:1020.210150px;}
.ya6{bottom:1020.622800px;}
.yeb{bottom:1021.264950px;}
.yf2{bottom:1030.430492px;}
.y134{bottom:1030.434300px;}
.y6b{bottom:1030.441050px;}
.y19e{bottom:1037.054850px;}
.y41{bottom:1037.078850px;}
.yf4{bottom:1039.596035px;}
.y112{bottom:1039.604683px;}
.y12c{bottom:1040.795610px;}
.y77{bottom:1042.648950px;}
.ya5{bottom:1043.698800px;}
.y11a{bottom:1047.724000px;}
.ycc{bottom:1048.769250px;}
.y2{bottom:1049.282550px;}
.y16e{bottom:1051.440900px;}
.ye2{bottom:1057.946468px;}
.y19d{bottom:1058.060850px;}
.y40{bottom:1058.078850px;}
.y76{bottom:1065.724950px;}
.ya4{bottom:1066.774800px;}
.y109{bottom:1067.093275px;}
.y133{bottom:1069.016850px;}
.yd1{bottom:1076.277553px;}
.y19c{bottom:1079.066850px;}
.y3f{bottom:1079.078850px;}
.y113{bottom:1081.770487px;}
.ya3{bottom:1081.774800px;}
.ydf{bottom:1085.443095px;}
.y75{bottom:1088.800950px;}
.ycf{bottom:1094.608637px;}
.y19b{bottom:1100.072850px;}
.y16d{bottom:1100.078700px;}
.y3e{bottom:1100.078850px;}
.y122{bottom:1101.259648px;}
.yfb{bottom:1103.766506px;}
.ya2{bottom:1104.850800px;}
.yd{bottom:1109.815500px;}
.y132{bottom:1110.520853px;}
.yda{bottom:1112.951397px;}
.y74{bottom:1119.282900px;}
.y3d{bottom:1121.078850px;}
.yce{bottom:1122.116940px;}
.y118{bottom:1122.121879px;}
.y16c{bottom:1125.451650px;}
.ya1{bottom:1128.226800px;}
.y11b{bottom:1130.234190px;}
.y39{bottom:1159.189500px;}
.y38{bottom:1178.689500px;}
.y3c{bottom:1178.692050px;}
.h1b{height:19.456543px;}
.h17{height:22.378856px;}
.h1a{height:31.346768px;}
.h19{height:31.652500px;}
.h18{height:32.427849px;}
.h1c{height:33.762558px;}
.h7{height:34.446094px;}
.h6{height:34.657031px;}
.h14{height:36.492188px;}
.h1e{height:37.983081px;}
.h12{height:38.226562px;}
.h10{height:38.273438px;}
.h2{height:38.507812px;}
.h5{height:38.531250px;}
.h1d{height:42.172792px;}
.h8{height:43.004883px;}
.hf{height:43.057617px;}
.he{height:43.321289px;}
.h13{height:43.546875px;}
.h9{height:45.615234px;}
.h15{height:48.726562px;}
.ha{height:48.990234px;}
.h1f{height:49.014234px;}
.h20{height:49.374234px;}
.h11{height:50.176758px;}
.hd{height:54.140625px;}
.hc{height:54.433594px;}
.hb{height:54.738281px;}
.h4{height:59.876953px;}
.h3{height:81.231445px;}
.h16{height:593.131500px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w2{width:501.886500px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x2{left:73.984200px;}
.xb{left:107.071650px;}
.xc{left:108.285450px;}
.x5a{left:110.708394px;}
.xe{left:112.254600px;}
.x6{left:119.878950px;}
.x7{left:122.032500px;}
.x8{left:124.102950px;}
.x59{left:127.199400px;}
.x11{left:136.537500px;}
.xd{left:157.374600px;}
.x35{left:178.846453px;}
.x32{left:197.323650px;}
.x42{left:225.138466px;}
.x41{left:230.049287px;}
.x34{left:232.122900px;}
.x38{left:234.848020px;}
.x46{left:242.771184px;}
.x3a{left:248.585707px;}
.x36{left:255.191847px;}
.x3b{left:260.929310px;}
.x3c{left:263.332180px;}
.x40{left:268.053853px;}
.x39{left:269.994363px;}
.x3e{left:271.038175px;}
.x43{left:272.971679px;}
.x37{left:275.108341px;}
.x2e{left:278.578015px;}
.x47{left:280.481521px;}
.x45{left:282.148818px;}
.x3d{left:283.984246px;}
.x1c{left:285.034725px;}
.x3f{left:286.506208px;}
.x1f{left:287.836929px;}
.x2f{left:290.277217px;}
.x13{left:292.565648px;}
.x1d{left:298.006594px;}
.x4{left:300.189000px;}
.x21{left:301.777893px;}
.x1e{left:302.980506px;}
.x18{left:305.350704px;}
.x14{left:307.732577px;}
.x16{left:308.795079px;}
.x33{left:311.694900px;}
.x2a{left:315.146778px;}
.x5{left:317.199000px;}
.x44{left:321.617524px;}
.x1a{left:322.841127px;}
.x23{left:324.300608px;}
.x28{left:325.830180px;}
.x29{left:327.803399px;}
.x1b{left:330.313671px;}
.x12{left:333.804750px;}
.x15{left:339.035531px;}
.x17{left:343.145430px;}
.x31{left:353.175450px;}
.x19{left:357.588456px;}
.x30{left:369.100880px;}
.x22{left:371.447690px;}
.x2c{left:373.385917px;}
.xf{left:375.030600px;}
.x20{left:384.594697px;}
.x2d{left:388.821391px;}
.x24{left:392.627682px;}
.x3{left:396.050700px;}
.x27{left:398.068664px;}
.x26{left:407.154300px;}
.x2b{left:411.449188px;}
.x25{left:413.317288px;}
.x10{left:492.246600px;}
.x4f{left:503.731350px;}
.x50{left:540.394650px;}
.x4b{left:541.637100px;}
.x5b{left:556.025100px;}
.x53{left:559.185450px;}
.x52{left:562.650750px;}
.x4e{left:564.726450px;}
.x4a{left:566.011889px;}
.x57{left:567.761700px;}
.x49{left:570.196500px;}
.x54{left:575.585850px;}
.x4d{left:577.411200px;}
.x51{left:581.016544px;}
.x48{left:591.885450px;}
.x56{left:601.514378px;}
.x55{left:606.471150px;}
.x58{left:632.646900px;}
.xa{left:646.539900px;}
.x4c{left:663.206850px;}
.x9{left:680.127900px;}
.x1{left:807.081450px;}
@media print{
.v2{vertical-align:-17.760000pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:16.325333pt;}
.v1{vertical-align:19.536000pt;}
.ls12{letter-spacing:-6.432000pt;}
.ls13{letter-spacing:-2.880000pt;}
.lsb{letter-spacing:-1.066667pt;}
.lsf{letter-spacing:-0.800000pt;}
.ls7{letter-spacing:-0.614400pt;}
.lsc{letter-spacing:-0.597333pt;}
.ls6{letter-spacing:-0.544000pt;}
.lsa{letter-spacing:-0.533333pt;}
.ls4{letter-spacing:-0.362667pt;}
.lse{letter-spacing:-0.320000pt;}
.ls10{letter-spacing:-0.266667pt;}
.ls5{letter-spacing:-0.181333pt;}
.ls3{letter-spacing:0.000000pt;}
.ls9{letter-spacing:0.295680pt;}
.ls14{letter-spacing:0.320000pt;}
.ls8{letter-spacing:0.453333pt;}
.ls15{letter-spacing:0.480000pt;}
.ls2{letter-spacing:0.533333pt;}
.ls11{letter-spacing:6.816000pt;}
.lsd{letter-spacing:7.253333pt;}
.ls0{letter-spacing:38.383435pt;}
.ls1{letter-spacing:38.383968pt;}
.ws8{word-spacing:-15.936000pt;}
.ws86{word-spacing:-14.608000pt;}
.wsb1{word-spacing:-13.813333pt;}
.wsa{word-spacing:-13.600000pt;}
.ws6{word-spacing:-13.280000pt;}
.ws9{word-spacing:-13.066667pt;}
.wsa1{word-spacing:-13.013333pt;}
.ws87{word-spacing:-12.960000pt;}
.wsce{word-spacing:-12.746667pt;}
.ws2e{word-spacing:-12.533333pt;}
.ws88{word-spacing:-12.480000pt;}
.ws10d{word-spacing:-12.384000pt;}
.ws52{word-spacing:-12.000000pt;}
.wsac{word-spacing:-11.952000pt;}
.wse6{word-spacing:-11.904000pt;}
.ws7{word-spacing:-11.760000pt;}
.wsa2{word-spacing:-11.070400pt;}
.wsb{word-spacing:-10.992000pt;}
.wsd{word-spacing:-10.800000pt;}
.wse{word-spacing:-9.770667pt;}
.ws4{word-spacing:-9.685333pt;}
.ws2c{word-spacing:-9.600000pt;}
.wscb{word-spacing:-9.072000pt;}
.ws5{word-spacing:-8.793600pt;}
.ws3{word-spacing:-8.549333pt;}
.ws2{word-spacing:-8.482261pt;}
.ws51{word-spacing:-7.711147pt;}
.ws126{word-spacing:-6.940032pt;}
.wsf1{word-spacing:-5.088000pt;}
.ws12a{word-spacing:-4.464000pt;}
.ws93{word-spacing:-3.733333pt;}
.ws94{word-spacing:-3.680000pt;}
.wsa4{word-spacing:-3.200000pt;}
.wsa3{word-spacing:-2.773333pt;}
.ws134{word-spacing:-2.640000pt;}
.ws96{word-spacing:-2.400000pt;}
.ws146{word-spacing:-2.352000pt;}
.ws2b{word-spacing:-2.346667pt;}
.ws5f{word-spacing:-2.293333pt;}
.ws118{word-spacing:-2.160000pt;}
.ws35{word-spacing:-2.133333pt;}
.ws5a{word-spacing:-2.080000pt;}
.ws27{word-spacing:-2.026667pt;}
.wsd1{word-spacing:-1.973333pt;}
.ws5b{word-spacing:-1.866667pt;}
.ws10c{word-spacing:-1.824000pt;}
.ws63{word-spacing:-1.813333pt;}
.wsd8{word-spacing:-1.760000pt;}
.ws59{word-spacing:-1.706667pt;}
.ws43{word-spacing:-1.653333pt;}
.ws157{word-spacing:-1.632000pt;}
.ws61{word-spacing:-1.600000pt;}
.wsb5{word-spacing:-1.546667pt;}
.wscc{word-spacing:-1.536000pt;}
.wsdd{word-spacing:-1.493333pt;}
.ws144{word-spacing:-1.392000pt;}
.ws120{word-spacing:-1.344000pt;}
.wsc6{word-spacing:-1.333333pt;}
.ws150{word-spacing:-1.296000pt;}
.wse3{word-spacing:-1.280000pt;}
.ws10e{word-spacing:-1.248000pt;}
.wse4{word-spacing:-1.226667pt;}
.ws11e{word-spacing:-1.152000pt;}
.wscf{word-spacing:-1.120000pt;}
.ws10a{word-spacing:-1.104000pt;}
.ws10f{word-spacing:-1.056000pt;}
.ws101{word-spacing:-1.008000pt;}
.ws49{word-spacing:-0.960000pt;}
.wsb6{word-spacing:-0.906667pt;}
.wsc3{word-spacing:-0.853333pt;}
.ws60{word-spacing:-0.800000pt;}
.ws13e{word-spacing:-0.768000pt;}
.ws65{word-spacing:-0.693333pt;}
.ws1d{word-spacing:-0.533333pt;}
.ws10b{word-spacing:-0.480000pt;}
.ws9c{word-spacing:-0.426667pt;}
.wse8{word-spacing:-0.373333pt;}
.ws110{word-spacing:-0.336000pt;}
.wsea{word-spacing:-0.320000pt;}
.ws125{word-spacing:-0.288000pt;}
.ws25{word-spacing:-0.266667pt;}
.ws95{word-spacing:-0.213333pt;}
.ws12{word-spacing:-0.192000pt;}
.wsfc{word-spacing:-0.144000pt;}
.wsb9{word-spacing:-0.106667pt;}
.wse7{word-spacing:-0.053333pt;}
.wsc{word-spacing:-0.048000pt;}
.ws2d{word-spacing:-0.042667pt;}
.wsf{word-spacing:0.000000pt;}
.ws113{word-spacing:0.048000pt;}
.wsca{word-spacing:0.053333pt;}
.ws1{word-spacing:0.090667pt;}
.ws18{word-spacing:0.144000pt;}
.ws10{word-spacing:0.181333pt;}
.ws41{word-spacing:0.213333pt;}
.ws11a{word-spacing:0.240000pt;}
.wsa7{word-spacing:0.266667pt;}
.ws0{word-spacing:0.272000pt;}
.ws97{word-spacing:0.320000pt;}
.ws11c{word-spacing:0.336000pt;}
.wsf7{word-spacing:0.384000pt;}
.ws57{word-spacing:0.426667pt;}
.ws119{word-spacing:0.432000pt;}
.ws58{word-spacing:0.533333pt;}
.ws11{word-spacing:0.544000pt;}
.ws42{word-spacing:0.586667pt;}
.ws13{word-spacing:0.614400pt;}
.ws133{word-spacing:0.624000pt;}
.ws37{word-spacing:0.640000pt;}
.ws117{word-spacing:0.672000pt;}
.wse9{word-spacing:0.693333pt;}
.ws136{word-spacing:0.720000pt;}
.wsb7{word-spacing:0.746667pt;}
.ws14e{word-spacing:0.768000pt;}
.ws4a{word-spacing:0.800000pt;}
.ws21{word-spacing:0.853333pt;}
.wsa5{word-spacing:0.960000pt;}
.wsba{word-spacing:1.013333pt;}
.ws55{word-spacing:1.066667pt;}
.ws13a{word-spacing:1.104000pt;}
.wsfb{word-spacing:1.200000pt;}
.ws13d{word-spacing:1.248000pt;}
.ws32{word-spacing:1.333333pt;}
.ws17{word-spacing:1.344000pt;}
.ws14f{word-spacing:1.440000pt;}
.ws1c{word-spacing:1.488000pt;}
.ws56{word-spacing:1.493333pt;}
.ws112{word-spacing:1.536000pt;}
.ws4c{word-spacing:1.546667pt;}
.ws29{word-spacing:1.600000pt;}
.ws16{word-spacing:1.632000pt;}
.wsff{word-spacing:1.776000pt;}
.wsd9{word-spacing:1.920000pt;}
.ws106{word-spacing:1.968000pt;}
.ws4d{word-spacing:1.973333pt;}
.ws140{word-spacing:2.064000pt;}
.ws111{word-spacing:2.112000pt;}
.ws48{word-spacing:2.133333pt;}
.ws13b{word-spacing:2.160000pt;}
.ws123{word-spacing:2.208000pt;}
.ws5d{word-spacing:2.240000pt;}
.ws107{word-spacing:2.256000pt;}
.ws1f{word-spacing:2.293333pt;}
.ws45{word-spacing:2.400000pt;}
.ws109{word-spacing:2.496000pt;}
.wsdc{word-spacing:2.506667pt;}
.ws104{word-spacing:2.544000pt;}
.wsdb{word-spacing:2.560000pt;}
.ws26{word-spacing:2.613333pt;}
.wsf0{word-spacing:2.640000pt;}
.wsf2{word-spacing:2.688000pt;}
.wsf5{word-spacing:2.736000pt;}
.ws54{word-spacing:2.826667pt;}
.ws1b{word-spacing:2.832000pt;}
.ws12f{word-spacing:2.928000pt;}
.wsb8{word-spacing:2.933333pt;}
.ws143{word-spacing:2.976000pt;}
.ws4b{word-spacing:3.040000pt;}
.ws115{word-spacing:3.072000pt;}
.wsa6{word-spacing:3.093333pt;}
.ws62{word-spacing:3.146667pt;}
.ws98{word-spacing:3.200000pt;}
.ws19{word-spacing:3.264000pt;}
.ws1a{word-spacing:3.312000pt;}
.ws3e{word-spacing:3.360000pt;}
.ws50{word-spacing:3.466667pt;}
.ws159{word-spacing:3.504000pt;}
.wsd5{word-spacing:3.520000pt;}
.wsd3{word-spacing:3.573333pt;}
.ws103{word-spacing:3.600000pt;}
.ws135{word-spacing:3.696000pt;}
.ws4f{word-spacing:3.733333pt;}
.ws141{word-spacing:3.744000pt;}
.ws3d{word-spacing:3.786667pt;}
.wsf9{word-spacing:3.792000pt;}
.ws3c{word-spacing:3.840000pt;}
.wsaa{word-spacing:3.888000pt;}
.ws9d{word-spacing:3.946667pt;}
.ws1e{word-spacing:4.053333pt;}
.wsc4{word-spacing:4.160000pt;}
.ws5c{word-spacing:4.213333pt;}
.wsaf{word-spacing:4.224000pt;}
.wsc2{word-spacing:4.266667pt;}
.ws3f{word-spacing:4.320000pt;}
.ws44{word-spacing:4.426667pt;}
.ws14b{word-spacing:4.512000pt;}
.wsc1{word-spacing:4.640000pt;}
.ws24{word-spacing:4.693333pt;}
.ws40{word-spacing:4.746667pt;}
.wse1{word-spacing:4.800000pt;}
.wse2{word-spacing:4.853333pt;}
.ws105{word-spacing:4.992000pt;}
.ws9f{word-spacing:5.013333pt;}
.wsde{word-spacing:5.066667pt;}
.ws102{word-spacing:5.088000pt;}
.ws132{word-spacing:5.136000pt;}
.ws114{word-spacing:5.184000pt;}
.wsbb{word-spacing:5.226667pt;}
.ws108{word-spacing:5.232000pt;}
.wse5{word-spacing:5.333333pt;}
.ws121{word-spacing:5.376000pt;}
.ws3a{word-spacing:5.386667pt;}
.wscd{word-spacing:5.424000pt;}
.ws34{word-spacing:5.440000pt;}
.ws128{word-spacing:5.472000pt;}
.wsd6{word-spacing:5.546667pt;}
.ws20{word-spacing:5.600000pt;}
.ws28{word-spacing:5.653333pt;}
.wseb{word-spacing:5.664000pt;}
.ws3b{word-spacing:5.706667pt;}
.ws23{word-spacing:5.760000pt;}
.wsd4{word-spacing:5.866667pt;}
.ws152{word-spacing:5.952000pt;}
.ws53{word-spacing:5.973333pt;}
.ws12c{word-spacing:6.000000pt;}
.ws11d{word-spacing:6.048000pt;}
.wsfa{word-spacing:6.096000pt;}
.wsf4{word-spacing:6.144000pt;}
.ws116{word-spacing:6.192000pt;}
.wsab{word-spacing:6.240000pt;}
.wsec{word-spacing:6.288000pt;}
.wsc0{word-spacing:6.293333pt;}
.wsc8{word-spacing:6.346667pt;}
.ws122{word-spacing:6.384000pt;}
.wsb0{word-spacing:6.432000pt;}
.ws36{word-spacing:6.453333pt;}
.ws22{word-spacing:6.506667pt;}
.ws66{word-spacing:6.613333pt;}
.wsee{word-spacing:6.720000pt;}
.wsae{word-spacing:6.768000pt;}
.ws99{word-spacing:6.773333pt;}
.ws148{word-spacing:6.816000pt;}
.wsad{word-spacing:6.864000pt;}
.ws64{word-spacing:6.933333pt;}
.wsda{word-spacing:6.986667pt;}
.wsef{word-spacing:7.008000pt;}
.wsa0{word-spacing:7.093333pt;}
.wsa9{word-spacing:7.146667pt;}
.ws154{word-spacing:7.152000pt;}
.ws9a{word-spacing:7.200000pt;}
.ws9b{word-spacing:7.253333pt;}
.ws12b{word-spacing:7.296000pt;}
.wsc5{word-spacing:7.306667pt;}
.ws151{word-spacing:7.440000pt;}
.wsbc{word-spacing:7.520000pt;}
.ws13c{word-spacing:7.536000pt;}
.wsd7{word-spacing:7.573333pt;}
.ws4e{word-spacing:7.626667pt;}
.ws14a{word-spacing:7.680000pt;}
.ws15{word-spacing:7.776000pt;}
.ws31{word-spacing:7.786667pt;}
.ws47{word-spacing:7.840000pt;}
.ws14{word-spacing:7.872000pt;}
.ws38{word-spacing:7.893333pt;}
.wsbe{word-spacing:7.946667pt;}
.wsbd{word-spacing:8.053333pt;}
.wsd0{word-spacing:8.106667pt;}
.wsf3{word-spacing:8.112000pt;}
.wsc9{word-spacing:8.160000pt;}
.wsd2{word-spacing:8.213333pt;}
.ws5e{word-spacing:8.266667pt;}
.ws142{word-spacing:8.448000pt;}
.wsc7{word-spacing:8.586667pt;}
.ws13f{word-spacing:8.592000pt;}
.ws147{word-spacing:8.640000pt;}
.ws12e{word-spacing:8.736000pt;}
.wsa8{word-spacing:8.800000pt;}
.wse0{word-spacing:8.906667pt;}
.wsed{word-spacing:8.976000pt;}
.wsdf{word-spacing:9.013333pt;}
.ws145{word-spacing:9.024000pt;}
.ws30{word-spacing:9.386667pt;}
.wsfd{word-spacing:9.456000pt;}
.ws2f{word-spacing:9.653333pt;}
.ws14c{word-spacing:9.792000pt;}
.wsbf{word-spacing:9.866667pt;}
.wsb4{word-spacing:10.080000pt;}
.ws14d{word-spacing:10.176000pt;}
.ws139{word-spacing:10.656000pt;}
.ws39{word-spacing:10.933333pt;}
.ws33{word-spacing:11.413333pt;}
.ws67{word-spacing:11.786667pt;}
.ws46{word-spacing:11.840000pt;}
.ws130{word-spacing:12.096000pt;}
.ws153{word-spacing:12.768000pt;}
.wsb3{word-spacing:13.013333pt;}
.wsb2{word-spacing:13.066667pt;}
.ws11f{word-spacing:13.632000pt;}
.wsf8{word-spacing:13.872000pt;}
.ws124{word-spacing:14.592000pt;}
.ws156{word-spacing:14.688000pt;}
.ws155{word-spacing:14.832000pt;}
.ws149{word-spacing:14.928000pt;}
.ws100{word-spacing:15.312000pt;}
.ws2a{word-spacing:15.946667pt;}
.ws12d{word-spacing:16.416000pt;}
.ws131{word-spacing:16.560000pt;}
.ws158{word-spacing:17.376000pt;}
.ws11b{word-spacing:17.712000pt;}
.ws127{word-spacing:18.288000pt;}
.ws129{word-spacing:19.152000pt;}
.ws9e{word-spacing:19.893333pt;}
.wsfe{word-spacing:20.400000pt;}
.wsf6{word-spacing:24.432000pt;}
.ws138{word-spacing:28.128000pt;}
.ws137{word-spacing:38.400000pt;}
.ws79{word-spacing:70.656000pt;}
.ws6b{word-spacing:93.226667pt;}
.ws75{word-spacing:95.488000pt;}
.ws69{word-spacing:103.978667pt;}
.ws89{word-spacing:107.776000pt;}
.ws8b{word-spacing:113.915733pt;}
.ws7f{word-spacing:114.474667pt;}
.ws85{word-spacing:114.944000pt;}
.ws74{word-spacing:116.701867pt;}
.ws7b{word-spacing:116.906667pt;}
.ws6d{word-spacing:117.674667pt;}
.ws78{word-spacing:118.186667pt;}
.ws81{word-spacing:118.997333pt;}
.ws72{word-spacing:160.682667pt;}
.ws92{word-spacing:172.672000pt;}
.ws6a{word-spacing:184.704000pt;}
.ws6e{word-spacing:187.818667pt;}
.ws71{word-spacing:194.389333pt;}
.ws8e{word-spacing:194.734933pt;}
.ws7d{word-spacing:195.370667pt;}
.ws70{word-spacing:195.882667pt;}
.ws77{word-spacing:197.973333pt;}
.ws83{word-spacing:199.125333pt;}
.ws80{word-spacing:199.637333pt;}
.ws90{word-spacing:199.680000pt;}
.ws8d{word-spacing:203.178667pt;}
.ws7c{word-spacing:206.805333pt;}
.ws6c{word-spacing:207.872000pt;}
.ws6f{word-spacing:211.289600pt;}
.ws82{word-spacing:212.266667pt;}
.ws8c{word-spacing:214.092800pt;}
.ws91{word-spacing:215.611733pt;}
.ws84{word-spacing:216.840533pt;}
.ws7e{word-spacing:225.621333pt;}
.ws8a{word-spacing:228.992000pt;}
.ws73{word-spacing:230.826667pt;}
.ws7a{word-spacing:236.800000pt;}
.ws68{word-spacing:245.883733pt;}
.ws76{word-spacing:254.041600pt;}
.ws8f{word-spacing:264.106667pt;}
._9{margin-left:-9.466667pt;}
._0{margin-left:-7.915200pt;}
._c{margin-left:-6.885333pt;}
._d{margin-left:-5.774400pt;}
._3{margin-left:-4.342933pt;}
._5{margin-left:-2.824533pt;}
._1{margin-left:-1.541333pt;}
._2{width:1.595733pt;}
._b{width:3.285333pt;}
._73{width:4.259733pt;}
._8{width:5.187200pt;}
._7{width:6.080000pt;}
._6{width:7.109333pt;}
._a{width:8.320000pt;}
._76{width:9.456000pt;}
._78{width:10.426667pt;}
._77{width:18.581333pt;}
._4{width:32.328533pt;}
._75{width:37.519467pt;}
._74{width:38.439467pt;}
._4f{width:84.821333pt;}
._50{width:91.178667pt;}
._5d{width:109.696000pt;}
._13{width:116.224000pt;}
._1c{width:120.021333pt;}
._59{width:121.130667pt;}
._1a{width:123.477333pt;}
._57{width:124.640000pt;}
._6e{width:126.216533pt;}
._14{width:127.786667pt;}
._22{width:131.413333pt;}
._2c{width:133.367467pt;}
._61{width:135.372267pt;}
._5e{width:136.917333pt;}
._1b{width:137.941333pt;}
._4c{width:139.178667pt;}
._56{width:140.714667pt;}
._60{width:143.744000pt;}
._4a{width:146.517333pt;}
._6f{width:147.498667pt;}
._33{width:149.930667pt;}
._27{width:152.661333pt;}
._26{width:154.538667pt;}
._f{width:156.629333pt;}
._47{width:158.976000pt;}
._46{width:161.322667pt;}
._6d{width:164.352000pt;}
._3b{width:165.248000pt;}
._3e{width:167.722667pt;}
._6c{width:170.453333pt;}
._67{width:172.885333pt;}
._6b{width:175.146667pt;}
._5b{width:178.139200pt;}
._23{width:187.818667pt;}
._1d{width:188.970667pt;}
._2a{width:191.232000pt;}
._37{width:196.138667pt;}
._41{width:198.997333pt;}
._43{width:200.320000pt;}
._20{width:201.856000pt;}
._2e{width:205.013333pt;}
._30{width:211.584000pt;}
._18{width:215.082667pt;}
._64{width:216.584533pt;}
._29{width:217.728000pt;}
._17{width:219.349333pt;}
._e{width:221.098667pt;}
._25{width:223.488000pt;}
._1f{width:224.810667pt;}
._31{width:228.176000pt;}
._54{width:231.381333pt;}
._58{width:232.405333pt;}
._36{width:235.093333pt;}
._55{width:236.885333pt;}
._71{width:240.213333pt;}
._40{width:241.664000pt;}
._12{width:243.242667pt;}
._42{width:244.778667pt;}
._10{width:246.448000pt;}
._5a{width:249.856000pt;}
._62{width:251.145600pt;}
._38{width:252.117333pt;}
._11{width:253.870933pt;}
._2f{width:255.232000pt;}
._28{width:260.693333pt;}
._49{width:264.405333pt;}
._35{width:266.249600pt;}
._52{width:267.392000pt;}
._3d{width:272.304000pt;}
._68{width:274.048000pt;}
._1e{width:275.242667pt;}
._2d{width:281.898667pt;}
._53{width:283.477333pt;}
._4e{width:284.586667pt;}
._4b{width:292.266667pt;}
._6a{width:299.440000pt;}
._2b{width:303.616000pt;}
._69{width:305.322667pt;}
._3a{width:309.589333pt;}
._51{width:312.490667pt;}
._16{width:315.349333pt;}
._39{width:322.688000pt;}
._34{width:332.885333pt;}
._45{width:334.464000pt;}
._5c{width:339.882667pt;}
._48{width:345.898667pt;}
._5f{width:351.786667pt;}
._21{width:354.218667pt;}
._32{width:361.386667pt;}
._24{width:362.368000pt;}
._65{width:363.904000pt;}
._19{width:369.920000pt;}
._63{width:371.925333pt;}
._66{width:375.808000pt;}
._44{width:377.301333pt;}
._15{width:396.928000pt;}
._3c{width:399.317333pt;}
._4d{width:412.501333pt;}
._70{width:419.413333pt;}
._72{width:435.925333pt;}
._3f{width:444.117333pt;}
.fsd{font-size:24.908267pt;}
.fsa{font-size:27.676267pt;}
.fs11{font-size:27.984000pt;}
.fs9{font-size:31.093333pt;}
.fs3{font-size:34.202667pt;}
.fs4{font-size:37.333333pt;}
.fs5{font-size:38.400000pt;}
.fsc{font-size:40.130133pt;}
.fsb{font-size:41.514133pt;}
.fs0{font-size:42.666667pt;}
.fse{font-size:44.281600pt;}
.fs6{font-size:48.000000pt;}
.fs10{font-size:49.817067pt;}
.fs7{font-size:53.333333pt;}
.fsf{font-size:55.352000pt;}
.fs2{font-size:58.666667pt;}
.fs8{font-size:64.000000pt;}
.fs1{font-size:90.666667pt;}
.y0{bottom:0.000000pt;}
.ycb{bottom:2.041600pt;}
.y102{bottom:21.794533pt;}
.yea{bottom:29.944933pt;}
.y1{bottom:60.555333pt;}
.y3a{bottom:63.299600pt;}
.y3b{bottom:66.702267pt;}
.y1ca{bottom:100.258533pt;}
.y19a{bottom:100.285067pt;}
.y1ea{bottom:100.343867pt;}
.yc6{bottom:100.514400pt;}
.y6a{bottom:100.514533pt;}
.yc{bottom:104.182267pt;}
.y2b{bottom:104.188933pt;}
.y9f{bottom:106.319067pt;}
.y153{bottom:107.103733pt;}
.y156{bottom:107.103867pt;}
.yb{bottom:116.979067pt;}
.y1c9{bottom:118.930533pt;}
.y199{bottom:118.957067pt;}
.y1e9{bottom:119.015867pt;}
.y16b{bottom:119.175867pt;}
.yc5{bottom:119.181067pt;}
.y69{bottom:119.181200pt;}
.y2a{bottom:122.855600pt;}
.y152{bottom:124.707733pt;}
.y155{bottom:124.707867pt;}
.y9e{bottom:126.831067pt;}
.ya{bottom:129.775867pt;}
.y1c8{bottom:137.602533pt;}
.y198{bottom:137.629067pt;}
.y1e8{bottom:137.687867pt;}
.y16a{bottom:137.842533pt;}
.yc4{bottom:137.847733pt;}
.y68{bottom:137.847867pt;}
.y29{bottom:141.522267pt;}
.y151{bottom:142.311733pt;}
.y154{bottom:142.311867pt;}
.y9{bottom:142.575867pt;}
.y9d{bottom:147.343067pt;}
.y1c7{bottom:156.274533pt;}
.y197{bottom:156.301067pt;}
.y1e7{bottom:156.359867pt;}
.y169{bottom:156.509200pt;}
.yc3{bottom:156.514400pt;}
.y67{bottom:156.514533pt;}
.y28{bottom:160.188933pt;}
.y9c{bottom:167.855067pt;}
.y1c6{bottom:174.946533pt;}
.y196{bottom:174.973067pt;}
.y1e6{bottom:175.031867pt;}
.yc2{bottom:175.181067pt;}
.y66{bottom:175.181200pt;}
.y27{bottom:178.855600pt;}
.y37{bottom:180.842133pt;}
.y9b{bottom:188.367067pt;}
.y1c5{bottom:193.618533pt;}
.y195{bottom:193.645067pt;}
.y1e5{bottom:193.703867pt;}
.yc1{bottom:193.847733pt;}
.y65{bottom:193.847867pt;}
.y36{bottom:196.838133pt;}
.y26{bottom:197.522267pt;}
.y168{bottom:198.692800pt;}
.y9a{bottom:208.879067pt;}
.y1c4{bottom:212.290533pt;}
.y194{bottom:212.317067pt;}
.y1e4{bottom:212.375867pt;}
.yc0{bottom:212.514400pt;}
.y64{bottom:212.514533pt;}
.y35{bottom:212.834133pt;}
.y25{bottom:216.188933pt;}
.y73{bottom:224.456533pt;}
.y34{bottom:228.830133pt;}
.y99{bottom:229.391067pt;}
.y1c3{bottom:230.962533pt;}
.y193{bottom:230.989067pt;}
.y1e3{bottom:231.047867pt;}
.y167{bottom:231.149200pt;}
.ybf{bottom:231.181067pt;}
.y63{bottom:231.181200pt;}
.y24{bottom:234.855600pt;}
.y33{bottom:244.826133pt;}
.y1c2{bottom:249.634533pt;}
.y192{bottom:249.661067pt;}
.y1e2{bottom:249.719867pt;}
.y166{bottom:249.821200pt;}
.ybe{bottom:249.847733pt;}
.y62{bottom:249.847867pt;}
.y98{bottom:249.903067pt;}
.y72{bottom:253.165333pt;}
.y23{bottom:253.522267pt;}
.y32{bottom:260.822133pt;}
.y1c1{bottom:268.306533pt;}
.y191{bottom:268.333067pt;}
.y1e1{bottom:268.391867pt;}
.y165{bottom:268.493200pt;}
.ybd{bottom:268.514400pt;}
.y61{bottom:268.514533pt;}
.y97{bottom:270.415067pt;}
.y22{bottom:272.188933pt;}
.y31{bottom:276.818133pt;}
.y1c0{bottom:286.978533pt;}
.y190{bottom:287.005067pt;}
.y1e0{bottom:287.063867pt;}
.y164{bottom:287.165200pt;}
.ybc{bottom:287.181067pt;}
.y60{bottom:287.181200pt;}
.y21{bottom:290.855600pt;}
.y96{bottom:290.927067pt;}
.y30{bottom:292.814133pt;}
.y1bf{bottom:305.650533pt;}
.y18f{bottom:305.677067pt;}
.y1df{bottom:305.735867pt;}
.y163{bottom:305.837200pt;}
.ybb{bottom:305.847733pt;}
.y5f{bottom:305.847867pt;}
.y20{bottom:309.522267pt;}
.y95{bottom:311.439067pt;}
.y2f{bottom:323.930133pt;}
.y1be{bottom:324.322533pt;}
.y18e{bottom:324.349067pt;}
.y1de{bottom:324.407867pt;}
.y162{bottom:324.509200pt;}
.yba{bottom:324.514400pt;}
.y5e{bottom:324.514533pt;}
.y1f{bottom:328.188933pt;}
.y94{bottom:331.951067pt;}
.y157{bottom:337.280933pt;}
.y2e{bottom:339.930133pt;}
.y1bd{bottom:342.994533pt;}
.y18d{bottom:343.021067pt;}
.y1dd{bottom:343.079867pt;}
.yb9{bottom:343.181067pt;}
.y5d{bottom:343.181200pt;}
.y1e{bottom:346.855600pt;}
.y93{bottom:352.463067pt;}
.y2d{bottom:355.930133pt;}
.y1bc{bottom:361.666533pt;}
.y18c{bottom:361.693067pt;}
.y1dc{bottom:361.751867pt;}
.yb8{bottom:361.847733pt;}
.y5c{bottom:361.847867pt;}
.y1d{bottom:365.522267pt;}
.y161{bottom:366.692800pt;}
.y2c{bottom:371.930133pt;}
.y92{bottom:372.975067pt;}
.y1bb{bottom:380.338533pt;}
.y18b{bottom:380.365067pt;}
.y1db{bottom:380.423867pt;}
.yb7{bottom:380.514400pt;}
.y5b{bottom:380.514533pt;}
.y1c{bottom:384.188933pt;}
.y91{bottom:393.487067pt;}
.y1ba{bottom:399.010533pt;}
.y18a{bottom:399.037067pt;}
.y1da{bottom:399.095867pt;}
.y160{bottom:399.165200pt;}
.y5a{bottom:399.181200pt;}
.y1b{bottom:402.855600pt;}
.y90{bottom:413.999067pt;}
.y1b9{bottom:417.682533pt;}
.y189{bottom:417.709067pt;}
.y1d9{bottom:417.767867pt;}
.y15f{bottom:417.837200pt;}
.y59{bottom:417.847867pt;}
.y1a{bottom:421.522267pt;}
.yc9{bottom:431.715067pt;}
.y8f{bottom:434.511067pt;}
.y1b8{bottom:436.354533pt;}
.y188{bottom:436.381067pt;}
.y1d8{bottom:436.439867pt;}
.y15e{bottom:436.509200pt;}
.y58{bottom:436.514533pt;}
.ya0{bottom:449.280933pt;}
.yc8{bottom:449.319067pt;}
.y19{bottom:452.092667pt;}
.y8e{bottom:455.023067pt;}
.y1b7{bottom:455.026533pt;}
.y187{bottom:455.053067pt;}
.y1d7{bottom:455.111867pt;}
.y57{bottom:455.181200pt;}
.yc7{bottom:466.923067pt;}
.y1b6{bottom:473.698533pt;}
.y186{bottom:473.725067pt;}
.y1d6{bottom:473.783867pt;}
.y71{bottom:473.847867pt;}
.y8d{bottom:475.535067pt;}
.y15d{bottom:478.692800pt;}
.y56{bottom:485.789867pt;}
.yca{bottom:486.662667pt;}
.y1b5{bottom:492.370533pt;}
.y185{bottom:492.397067pt;}
.y1d5{bottom:492.455867pt;}
.y70{bottom:492.514533pt;}
.y8c{bottom:496.047067pt;}
.y14b{bottom:506.213177pt;}
.y101{bottom:508.445861pt;}
.y1b4{bottom:511.042533pt;}
.y184{bottom:511.069067pt;}
.y1d4{bottom:511.127867pt;}
.y6f{bottom:511.181200pt;}
.y55{bottom:514.498800pt;}
.y18{bottom:516.113733pt;}
.y8b{bottom:516.559067pt;}
.ye9{bottom:516.620587pt;}
.y149{bottom:517.773200pt;}
.y103{bottom:518.925067pt;}
.y111{bottom:520.435909pt;}
.ye8{bottom:524.767736pt;}
.y124{bottom:526.432574pt;}
.y1b3{bottom:529.714533pt;}
.y183{bottom:529.741067pt;}
.y1d3{bottom:529.799867pt;}
.y6e{bottom:529.847867pt;}
.y12d{bottom:531.968437pt;}
.yf7{bottom:532.887307pt;}
.y15c{bottom:534.692800pt;}
.y8a{bottom:537.071067pt;}
.ycd{bottom:541.051655pt;}
.y148{bottom:541.060874pt;}
.y1b2{bottom:548.386533pt;}
.y182{bottom:548.413067pt;}
.y1d2{bottom:548.471867pt;}
.y6d{bottom:548.514533pt;}
.yf9{bottom:549.191983pt;}
.y147{bottom:549.540800pt;}
.y126{bottom:552.306036pt;}
.y17{bottom:552.579333pt;}
.ye5{bottom:557.366709pt;}
.y89{bottom:557.583067pt;}
.y10c{bottom:559.629067pt;}
.yef{bottom:565.507037pt;}
.y1b1{bottom:567.058533pt;}
.y146{bottom:567.060667pt;}
.y11c{bottom:567.064184pt;}
.y181{bottom:567.085067pt;}
.y1d1{bottom:567.143867pt;}
.y54{bottom:567.181200pt;}
.y16{bottom:570.183333pt;}
.y11e{bottom:572.718361pt;}
.yde{bottom:573.650628pt;}
.y88{bottom:578.095067pt;}
.yb6{bottom:579.028267pt;}
.yf3{bottom:581.801335pt;}
.y1b0{bottom:585.730533pt;}
.y180{bottom:585.757067pt;}
.y1d0{bottom:585.815867pt;}
.y53{bottom:585.847867pt;}
.y15{bottom:587.787333pt;}
.yf6{bottom:589.938105pt;}
.y150{bottom:589.959035pt;}
.y15b{bottom:590.692800pt;}
.ye3{bottom:598.112831pt;}
.y87{bottom:598.607067pt;}
.yb5{bottom:599.540267pt;}
.y1af{bottom:604.402533pt;}
.y17f{bottom:604.429067pt;}
.y1cf{bottom:604.487867pt;}
.y52{bottom:604.514533pt;}
.y14{bottom:605.391333pt;}
.yd5{bottom:606.249601pt;}
.y145{bottom:606.253673pt;}
.y14a{bottom:609.708133pt;}
.ye1{bottom:614.407129pt;}
.y123{bottom:614.408572pt;}
.y6c{bottom:617.280933pt;}
.y86{bottom:619.119067pt;}
.yb4{bottom:620.052267pt;}
.y11d{bottom:621.619515pt;}
.ye4{bottom:622.564656pt;}
.y13{bottom:622.995333pt;}
.y1ae{bottom:623.074533pt;}
.y17e{bottom:623.101067pt;}
.y1ce{bottom:623.159867pt;}
.y51{bottom:623.181200pt;}
.y144{bottom:624.619467pt;}
.y10d{bottom:624.701913pt;}
.y110{bottom:629.764519pt;}
.ydd{bottom:630.701426pt;}
.y130{bottom:635.711367pt;}
.yf0{bottom:638.852132pt;}
.y143{bottom:638.852800pt;}
.y85{bottom:639.631067pt;}
.yb3{bottom:640.564267pt;}
.y12{bottom:640.599333pt;}
.y1ad{bottom:641.746533pt;}
.y17d{bottom:641.773067pt;}
.y1cd{bottom:641.831867pt;}
.y50{bottom:641.847867pt;}
.y106{bottom:646.999827pt;}
.y142{bottom:647.004233pt;}
.y15a{bottom:647.055200pt;}
.y11f{bottom:649.199194pt;}
.ye6{bottom:655.163629pt;}
.y125{bottom:657.120022pt;}
.y141{bottom:658.174267pt;}
.y11{bottom:658.203333pt;}
.y84{bottom:660.143067pt;}
.y1ac{bottom:660.418533pt;}
.y17c{bottom:660.445067pt;}
.y1cc{bottom:660.503867pt;}
.y4f{bottom:660.514533pt;}
.yb2{bottom:661.076267pt;}
.y117{bottom:662.369440pt;}
.y107{bottom:663.294124pt;}
.y108{bottom:671.441273pt;}
.y127{bottom:672.382563pt;}
.y159{bottom:673.280933pt;}
.y140{bottom:673.378533pt;}
.y10{bottom:675.807333pt;}
.y1ab{bottom:679.090533pt;}
.y17b{bottom:679.117067pt;}
.y1cb{bottom:679.175867pt;}
.y4e{bottom:679.181200pt;}
.y104{bottom:679.598800pt;}
.y83{bottom:680.655067pt;}
.yb1{bottom:681.588267pt;}
.y121{bottom:686.810676pt;}
.yfc{bottom:687.735024pt;}
.yf{bottom:693.411333pt;}
.y131{bottom:694.968134pt;}
.yd0{bottom:695.899372pt;}
.y1aa{bottom:697.762533pt;}
.y17a{bottom:697.789067pt;}
.y4d{bottom:697.847867pt;}
.y82{bottom:701.167067pt;}
.yb0{bottom:702.100267pt;}
.y13f{bottom:703.113067pt;}
.yd9{bottom:704.046521pt;}
.y13e{bottom:711.314719pt;}
.y10b{bottom:712.177016pt;}
.y1a9{bottom:716.434533pt;}
.y179{bottom:716.461067pt;}
.y4c{bottom:716.514533pt;}
.y13d{bottom:719.462533pt;}
.ye0{bottom:720.351197pt;}
.ye{bottom:721.053600pt;}
.y81{bottom:721.679067pt;}
.yaf{bottom:722.612267pt;}
.y100{bottom:728.491525pt;}
.y13c{bottom:728.536000pt;}
.y1a8{bottom:735.106533pt;}
.y178{bottom:735.133067pt;}
.y4b{bottom:735.181200pt;}
.ydb{bottom:736.645494pt;}
.y12e{bottom:737.984710pt;}
.y80{bottom:742.191067pt;}
.yae{bottom:743.124267pt;}
.yff{bottom:744.785822pt;}
.y10f{bottom:744.797121pt;}
.y12b{bottom:751.833706pt;}
.yd8{bottom:752.939791pt;}
.y1a7{bottom:753.778533pt;}
.y177{bottom:753.805067pt;}
.y4a{bottom:753.847867pt;}
.y13b{bottom:754.889200pt;}
.y116{bottom:760.165522pt;}
.yfa{bottom:761.080119pt;}
.y7f{bottom:762.703067pt;}
.yad{bottom:763.636267pt;}
.yfd{bottom:769.237647pt;}
.y14d{bottom:769.248400pt;}
.y1a6{bottom:772.450533pt;}
.y176{bottom:772.477067pt;}
.y49{bottom:772.514533pt;}
.yf5{bottom:777.384795pt;}
.y13a{bottom:777.395467pt;}
.y128{bottom:781.374911pt;}
.y7e{bottom:783.215067pt;}
.yac{bottom:784.148267pt;}
.ye7{bottom:785.559522pt;}
.y1a5{bottom:791.122533pt;}
.y175{bottom:791.149067pt;}
.y48{bottom:791.181200pt;}
.y139{bottom:791.454933pt;}
.y8{bottom:791.526000pt;}
.y114{bottom:792.814032pt;}
.ydc{bottom:793.696292pt;}
.y10e{bottom:800.909219pt;}
.yec{bottom:801.846998pt;}
.y7d{bottom:803.727067pt;}
.y158{bottom:803.947600pt;}
.yab{bottom:804.660267pt;}
.y7{bottom:807.526000pt;}
.y1a4{bottom:809.794533pt;}
.y174{bottom:809.821067pt;}
.y47{bottom:809.847867pt;}
.yd3{bottom:809.990589pt;}
.y138{bottom:809.994267pt;}
.y115{bottom:817.211679pt;}
.y105{bottom:818.141841pt;}
.y6{bottom:823.526000pt;}
.y7c{bottom:824.239067pt;}
.yaa{bottom:825.172267pt;}
.yd2{bottom:826.295265pt;}
.y1a3{bottom:828.466533pt;}
.y173{bottom:828.493067pt;}
.y46{bottom:828.514533pt;}
.yee{bottom:834.445972pt;}
.y12a{bottom:835.911561pt;}
.y5{bottom:839.526000pt;}
.y129{bottom:841.659143pt;}
.yf1{bottom:842.593120pt;}
.y7b{bottom:844.751067pt;}
.ya9{bottom:845.684267pt;}
.y1a2{bottom:847.138533pt;}
.y172{bottom:847.165067pt;}
.y45{bottom:847.181200pt;}
.yd7{bottom:850.736711pt;}
.yf8{bottom:858.877039pt;}
.y14f{bottom:858.897969pt;}
.y7a{bottom:865.263067pt;}
.y1a1{bottom:865.810533pt;}
.y171{bottom:865.837067pt;}
.y44{bottom:865.847867pt;}
.ya8{bottom:866.196267pt;}
.y10a{bottom:867.024733pt;}
.y137{bottom:869.656800pt;}
.y4{bottom:870.644267pt;}
.y12f{bottom:874.257837pt;}
.yed{bottom:875.192093pt;}
.y14e{bottom:875.192267pt;}
.yd6{bottom:883.335684pt;}
.y1a0{bottom:884.482533pt;}
.y170{bottom:884.509067pt;}
.y43{bottom:884.514533pt;}
.y79{bottom:885.775067pt;}
.y136{bottom:885.822533pt;}
.ya7{bottom:886.708267pt;}
.y120{bottom:890.473119pt;}
.yfe{bottom:891.486391pt;}
.y135{bottom:898.173608pt;}
.yd4{bottom:899.640360pt;}
.y19f{bottom:903.154533pt;}
.y16f{bottom:903.181067pt;}
.y42{bottom:903.181200pt;}
.y3{bottom:903.364933pt;}
.y119{bottom:904.153984pt;}
.y78{bottom:906.287067pt;}
.y14c{bottom:906.853467pt;}
.ya6{bottom:907.220267pt;}
.yeb{bottom:907.791067pt;}
.yf2{bottom:915.938215pt;}
.y134{bottom:915.941600pt;}
.y6b{bottom:915.947600pt;}
.y19e{bottom:921.826533pt;}
.y41{bottom:921.847867pt;}
.yf4{bottom:924.085364pt;}
.y112{bottom:924.093052pt;}
.y12c{bottom:925.151653pt;}
.y77{bottom:926.799067pt;}
.ya5{bottom:927.732267pt;}
.y11a{bottom:931.310222pt;}
.ycc{bottom:932.239333pt;}
.y2{bottom:932.695600pt;}
.y16e{bottom:934.614133pt;}
.ye2{bottom:940.396861pt;}
.y19d{bottom:940.498533pt;}
.y40{bottom:940.514533pt;}
.y76{bottom:947.311067pt;}
.ya4{bottom:948.244267pt;}
.y109{bottom:948.527356pt;}
.y133{bottom:950.237200pt;}
.yd1{bottom:956.691158pt;}
.y19c{bottom:959.170533pt;}
.y3f{bottom:959.181200pt;}
.y113{bottom:961.573766pt;}
.ya3{bottom:961.577600pt;}
.ydf{bottom:964.838307pt;}
.y75{bottom:967.823067pt;}
.ycf{bottom:972.985455pt;}
.y19b{bottom:977.842533pt;}
.y16d{bottom:977.847733pt;}
.y3e{bottom:977.847867pt;}
.y122{bottom:978.897465pt;}
.yfb{bottom:981.125783pt;}
.ya2{bottom:982.089600pt;}
.yd{bottom:986.502667pt;}
.y132{bottom:987.129647pt;}
.yda{bottom:989.290131pt;}
.y74{bottom:994.918133pt;}
.y3d{bottom:996.514533pt;}
.yce{bottom:997.437280pt;}
.y118{bottom:997.441670pt;}
.y16c{bottom:1000.401467pt;}
.ya1{bottom:1002.868267pt;}
.y11b{bottom:1004.652613pt;}
.y39{bottom:1030.390667pt;}
.y38{bottom:1047.724000pt;}
.y3c{bottom:1047.726267pt;}
.h1b{height:17.294705pt;}
.h17{height:19.892317pt;}
.h1a{height:27.863794pt;}
.h19{height:28.135555pt;}
.h18{height:28.824755pt;}
.h1c{height:30.011163pt;}
.h7{height:30.618750pt;}
.h6{height:30.806250pt;}
.h14{height:32.437500pt;}
.h1e{height:33.762739pt;}
.h12{height:33.979167pt;}
.h10{height:34.020833pt;}
.h2{height:34.229167pt;}
.h5{height:34.250000pt;}
.h1d{height:37.486926pt;}
.h8{height:38.226562pt;}
.hf{height:38.273438pt;}
.he{height:38.507812pt;}
.h13{height:38.708333pt;}
.h9{height:40.546875pt;}
.h15{height:43.312500pt;}
.ha{height:43.546875pt;}
.h1f{height:43.568208pt;}
.h20{height:43.888208pt;}
.h11{height:44.601562pt;}
.hd{height:48.125000pt;}
.hc{height:48.385417pt;}
.hb{height:48.656250pt;}
.h4{height:53.223958pt;}
.h3{height:72.205729pt;}
.h16{height:527.228000pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w2{width:446.121333pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x2{left:65.763733pt;}
.xb{left:95.174800pt;}
.xc{left:96.253733pt;}
.x5a{left:98.407461pt;}
.xe{left:99.781867pt;}
.x6{left:106.559067pt;}
.x7{left:108.473333pt;}
.x8{left:110.313733pt;}
.x59{left:113.066133pt;}
.x11{left:121.366667pt;}
.xd{left:139.888533pt;}
.x35{left:158.974625pt;}
.x32{left:175.398800pt;}
.x42{left:200.123081pt;}
.x41{left:204.488255pt;}
.x34{left:206.331467pt;}
.x38{left:208.753796pt;}
.x46{left:215.796608pt;}
.x3a{left:220.965073pt;}
.x36{left:226.837197pt;}
.x3b{left:231.937165pt;}
.x3c{left:234.073049pt;}
.x40{left:238.270092pt;}
.x39{left:239.994989pt;}
.x3e{left:240.922822pt;}
.x43{left:242.641492pt;}
.x37{left:244.540748pt;}
.x2e{left:247.624903pt;}
.x47{left:249.316908pt;}
.x45{left:250.798950pt;}
.x3d{left:252.430441pt;}
.x1c{left:253.364200pt;}
.x3f{left:254.672185pt;}
.x1f{left:255.855048pt;}
.x2f{left:258.024193pt;}
.x13{left:260.058354pt;}
.x1d{left:264.894750pt;}
.x4{left:266.834667pt;}
.x21{left:268.247016pt;}
.x1e{left:269.316005pt;}
.x18{left:271.422848pt;}
.x14{left:273.540068pt;}
.x16{left:274.484515pt;}
.x33{left:277.062133pt;}
.x2a{left:280.130469pt;}
.x5{left:281.954667pt;}
.x44{left:285.882243pt;}
.x1a{left:286.969891pt;}
.x23{left:288.267207pt;}
.x28{left:289.626827pt;}
.x29{left:291.380799pt;}
.x1b{left:293.612152pt;}
.x12{left:296.715333pt;}
.x15{left:301.364916pt;}
.x17{left:305.018160pt;}
.x31{left:313.933733pt;}
.x19{left:317.856406pt;}
.x30{left:328.089671pt;}
.x22{left:330.175725pt;}
.x2c{left:331.898593pt;}
.xf{left:333.360533pt;}
.x20{left:341.861953pt;}
.x2d{left:345.619014pt;}
.x24{left:349.002384pt;}
.x3{left:352.045067pt;}
.x27{left:353.838813pt;}
.x26{left:361.914933pt;}
.x2b{left:365.732612pt;}
.x25{left:367.393145pt;}
.x10{left:437.552533pt;}
.x4f{left:447.761200pt;}
.x50{left:480.350800pt;}
.x4b{left:481.455200pt;}
.x5b{left:494.244533pt;}
.x53{left:497.053733pt;}
.x52{left:500.134000pt;}
.x4e{left:501.979067pt;}
.x4a{left:503.121679pt;}
.x57{left:504.677067pt;}
.x49{left:506.841333pt;}
.x54{left:511.631867pt;}
.x4d{left:513.254400pt;}
.x51{left:516.459150pt;}
.x48{left:526.120400pt;}
.x56{left:534.679447pt;}
.x55{left:539.085467pt;}
.x58{left:562.352800pt;}
.xa{left:574.702133pt;}
.x4c{left:589.517200pt;}
.x9{left:604.558133pt;}
.x1{left:717.405733pt;}
}




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