
    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_122602814fc83ffc31d7321a.woff')format("woff");}.ff1{font-family:ff1;line-height:0.897000;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_5e192d7767a9c98dbc3efd9d.woff')format("woff");}.ff2{font-family:ff2;line-height:1.001000;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_07aee9ba1b81e22019e97694.woff')format("woff");}.ff3{font-family:ff3;line-height:0.906000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_c8597a34c190a04133636d58.woff')format("woff");}.ff4{font-family:ff4;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_a631c54433b4c13353f47179.woff')format("woff");}.ff5{font-family:ff5;line-height:0.901000;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_af316ce43bd9902e400bded1.woff')format("woff");}.ff6{font-family:ff6;line-height:0.389000;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_43e3e1e466f162320224b54d.woff')format("woff");}.ff7{font-family:ff7;line-height:0.910000;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_cb9eba1dbca7de2197b31b7f.woff')format("woff");}.ff8{font-family:ff8;line-height:0.908000;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_fe22aeb6a5345ebfffda6b35.woff')format("woff");}.ff9{font-family:ff9;line-height:1.440000;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_b8badf90149b6c63961b0647.woff')format("woff");}.ffa{font-family:ffa;line-height:0.040000;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_f8c81498a036914f25707cc9.woff')format("woff");}.ffb{font-family:ffb;line-height:0.665000;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_c1798857e9d0270c6db42cec.woff')format("woff");}.ffc{font-family:ffc;line-height:0.431000;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_4d42c7f1785e95ea1225095c.woff')format("woff");}.ffd{font-family:ffd;line-height:0.923000;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_a1f1b934c249d2baa32dba62.woff')format("woff");}.ffe{font-family:ffe;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v7{vertical-align:-66.096000px;}
.v6{vertical-align:-56.280000px;}
.v11{vertical-align:-18.930000px;}
.v1{vertical-align:-9.816000px;}
.v5{vertical-align:-7.188000px;}
.v0{vertical-align:0.000000px;}
.v10{vertical-align:9.534000px;}
.vd{vertical-align:10.662000px;}
.v8{vertical-align:18.912000px;}
.ve{vertical-align:23.754000px;}
.vb{vertical-align:27.024000px;}
.vc{vertical-align:33.456000px;}
.v4{vertical-align:34.464000px;}
.v3{vertical-align:44.280000px;}
.va{vertical-align:54.318000px;}
.v9{vertical-align:56.280000px;}
.vf{vertical-align:75.042000px;}
.v2{vertical-align:93.372000px;}
.ls0{letter-spacing:0.000000px;}
.ls1b{letter-spacing:0.001289px;}
.lsc{letter-spacing:0.001610px;}
.ls5{letter-spacing:0.002696px;}
.lsa{letter-spacing:0.002706px;}
.ls20{letter-spacing:0.004890px;}
.ls21{letter-spacing:0.508322px;}
.ls15{letter-spacing:1.819611px;}
.ls18{letter-spacing:1.825611px;}
.ls9{letter-spacing:2.347610px;}
.ls1c{letter-spacing:2.989289px;}
.lsb{letter-spacing:2.990915px;}
.ls19{letter-spacing:10.904712px;}
.lsd{letter-spacing:17.533289px;}
.ls6{letter-spacing:17.539289px;}
.ls7{letter-spacing:18.701412px;}
.ls8{letter-spacing:19.031412px;}
.lse{letter-spacing:19.037412px;}
.ls1e{letter-spacing:19.922149px;}
.ls22{letter-spacing:21.164915px;}
.ls16{letter-spacing:21.170915px;}
.ls23{letter-spacing:21.719412px;}
.ls1f{letter-spacing:22.909289px;}
.ls26{letter-spacing:23.455610px;}
.ls14{letter-spacing:23.923611px;}
.ls25{letter-spacing:24.103289px;}
.ls13{letter-spacing:26.102696px;}
.ls11{letter-spacing:26.108696px;}
.ls2{letter-spacing:27.901607px;}
.ls1a{letter-spacing:27.937611px;}
.ls12{letter-spacing:28.447610px;}
.ls10{letter-spacing:29.474696px;}
.ls1{letter-spacing:32.723973px;}
.ls3{letter-spacing:32.725605px;}
.ls17{letter-spacing:54.307329px;}
.ls4{letter-spacing:153.749412px;}
.lsf{letter-spacing:772.688915px;}
.ls24{letter-spacing:905.600915px;}
.ls1d{letter-spacing:919.448915px;}
.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;}
}
.wsa6{word-spacing:-42.637126px;}
.wsb8{word-spacing:-33.211407px;}
.wsb9{word-spacing:-31.706208px;}
.ws2b{word-spacing:-18.183288px;}
.wse8{word-spacing:-16.730196px;}
.wsa7{word-spacing:-10.326287px;}
.wsc1{word-spacing:-8.408724px;}
.wsbb{word-spacing:-7.845186px;}
.wsb7{word-spacing:-6.401460px;}
.wsc2{word-spacing:-3.653555px;}
.ws63{word-spacing:-3.259639px;}
.wsc6{word-spacing:-2.670548px;}
.ws26{word-spacing:-2.474184px;}
.ws68{word-spacing:-2.343275px;}
.ws84{word-spacing:-2.081456px;}
.ws30{word-spacing:-2.016002px;}
.ws99{word-spacing:-1.950547px;}
.ws7c{word-spacing:-1.819638px;}
.ws5e{word-spacing:-1.688729px;}
.ws59{word-spacing:-1.623274px;}
.ws16{word-spacing:-1.557819px;}
.ws8c{word-spacing:-1.492365px;}
.ws94{word-spacing:-1.230546px;}
.wsa5{word-spacing:-1.099637px;}
.ws5a{word-spacing:-1.034183px;}
.ws19{word-spacing:-0.903273px;}
.ws1c{word-spacing:-0.772364px;}
.ws53{word-spacing:-0.746182px;}
.ws86{word-spacing:-0.706910px;}
.ws12{word-spacing:-0.641455px;}
.ws31{word-spacing:-0.576000px;}
.ws47{word-spacing:-0.510546px;}
.ws8{word-spacing:-0.466250px;}
.wsc7{word-spacing:-0.445091px;}
.ws9d{word-spacing:-0.379637px;}
.ws6f{word-spacing:-0.183273px;}
.wsa8{word-spacing:-0.065455px;}
.ws5b{word-spacing:-0.052364px;}
.wsc3{word-spacing:-0.047821px;}
.ws24{word-spacing:0.000000px;}
.wsbd{word-spacing:0.013091px;}
.ws1a{word-spacing:0.078546px;}
.ws43{word-spacing:0.144000px;}
.ws6b{word-spacing:0.209455px;}
.ws2d{word-spacing:0.471273px;}
.wsd2{word-spacing:0.536728px;}
.ws11{word-spacing:0.667637px;}
.ws5c{word-spacing:0.733092px;}
.ws72{word-spacing:0.798546px;}
.ws76{word-spacing:0.864001px;}
.ws3f{word-spacing:0.929455px;}
.wsaa{word-spacing:0.965713px;}
.ws2a{word-spacing:0.994910px;}
.ws17{word-spacing:1.125819px;}
.wsd4{word-spacing:1.191274px;}
.wsd9{word-spacing:1.386368px;}
.ws3d{word-spacing:1.387638px;}
.wsd6{word-spacing:1.453092px;}
.ws6{word-spacing:1.506345px;}
.ws8e{word-spacing:1.518547px;}
.ws65{word-spacing:1.649456px;}
.wsbf{word-spacing:1.714911px;}
.wsbe{word-spacing:1.738209px;}
.ws32{word-spacing:1.780365px;}
.ws67{word-spacing:1.911274px;}
.ws28{word-spacing:1.976729px;}
.ws40{word-spacing:2.042184px;}
.ws2c{word-spacing:2.107638px;}
.ws6a{word-spacing:2.173093px;}
.ws48{word-spacing:2.369457px;}
.ws45{word-spacing:2.434911px;}
.ws3c{word-spacing:2.565820px;}
.ws7{word-spacing:2.582306px;}
.ws41{word-spacing:2.631275px;}
.wsb4{word-spacing:2.696730px;}
.wscc{word-spacing:2.762184px;}
.ws9c{word-spacing:2.827639px;}
.wsc5{word-spacing:2.893093px;}
.wsc4{word-spacing:2.932209px;}
.ws18{word-spacing:2.958548px;}
.wsd1{word-spacing:3.024003px;}
.wsb1{word-spacing:3.089457px;}
.wsd3{word-spacing:3.154912px;}
.ws20{word-spacing:3.220366px;}
.ws36{word-spacing:3.285821px;}
.ws5f{word-spacing:3.351276px;}
.wse{word-spacing:3.359389px;}
.ws50{word-spacing:3.416730px;}
.ws13{word-spacing:3.613094px;}
.wsc0{word-spacing:3.634818px;}
.ws4d{word-spacing:3.678549px;}
.ws83{word-spacing:3.744003px;}
.ws79{word-spacing:3.809458px;}
.wsa{word-spacing:3.837594px;}
.ws9e{word-spacing:3.874912px;}
.ws4f{word-spacing:3.901094px;}
.ws6d{word-spacing:3.940367px;}
.wsa2{word-spacing:4.005822px;}
.ws23{word-spacing:4.071276px;}
.ws4{word-spacing:4.076696px;}
.ws33{word-spacing:4.136731px;}
.ws87{word-spacing:4.162913px;}
.ws38{word-spacing:4.202185px;}
.ws89{word-spacing:4.228367px;}
.ws7b{word-spacing:4.267640px;}
.ws5{word-spacing:4.315798px;}
.ws5d{word-spacing:4.333095px;}
.wsb3{word-spacing:4.398549px;}
.ws7e{word-spacing:4.464004px;}
.ws4a{word-spacing:4.483200px;}
.ws98{word-spacing:4.529458px;}
.ws3{word-spacing:4.614676px;}
.ws10{word-spacing:4.725822px;}
.ws15{word-spacing:4.791277px;}
.ws14{word-spacing:4.856731px;}
.wsd{word-spacing:5.033106px;}
.wsb2{word-spacing:5.053095px;}
.ws4c{word-spacing:5.118550px;}
.wsd0{word-spacing:5.184004px;}
.ws77{word-spacing:5.314914px;}
.ws27{word-spacing:5.379825px;}
.wsa1{word-spacing:5.380368px;}
.ws0{word-spacing:5.412522px;}
.ws22{word-spacing:5.445823px;}
.wscd{word-spacing:5.511277px;}
.ws8b{word-spacing:5.642187px;}
.wsd7{word-spacing:5.707641px;}
.wsee{word-spacing:5.720732px;}
.ws73{word-spacing:5.773096px;}
.ws4b{word-spacing:5.930187px;}
.ws9a{word-spacing:5.969460px;}
.wsb6{word-spacing:6.034914px;}
.ws82{word-spacing:6.100369px;}
.ws34{word-spacing:6.165823px;}
.ws2{word-spacing:6.228618px;}
.wsa3{word-spacing:6.296733px;}
.ws52{word-spacing:6.427642px;}
.ws44{word-spacing:6.493096px;}
.ws9b{word-spacing:6.558551px;}
.wsbc{word-spacing:6.689460px;}
.wsda{word-spacing:6.702551px;}
.wsca{word-spacing:6.754915px;}
.ws39{word-spacing:6.951279px;}
.ws51{word-spacing:7.016733px;}
.ws25{word-spacing:7.082188px;}
.ws2e{word-spacing:7.213097px;}
.ws21{word-spacing:7.278552px;}
.ws6c{word-spacing:7.344006px;}
.ws42{word-spacing:7.409461px;}
.ws60{word-spacing:7.474915px;}
.ws81{word-spacing:7.540370px;}
.wscb{word-spacing:7.605825px;}
.ws3b{word-spacing:7.671279px;}
.ws1d{word-spacing:7.736734px;}
.wsb0{word-spacing:7.867643px;}
.wsaf{word-spacing:7.912261px;}
.wsa4{word-spacing:7.933098px;}
.wsba{word-spacing:7.936209px;}
.wsc{word-spacing:7.962110px;}
.ws95{word-spacing:7.998552px;}
.ws58{word-spacing:8.064007px;}
.wsa0{word-spacing:8.194916px;}
.ws55{word-spacing:8.260371px;}
.wsc8{word-spacing:8.391280px;}
.ws56{word-spacing:8.456734px;}
.ws62{word-spacing:8.522189px;}
.ws61{word-spacing:8.587644px;}
.ws7a{word-spacing:8.653098px;}
.ws35{word-spacing:8.914917px;}
.ws9{word-spacing:8.918520px;}
.ws8d{word-spacing:8.980371px;}
.ws37{word-spacing:9.045826px;}
.wsb{word-spacing:9.097846px;}
.ws1e{word-spacing:9.111280px;}
.wsed{word-spacing:9.137810px;}
.ws7f{word-spacing:9.176735px;}
.wsce{word-spacing:9.307644px;}
.ws54{word-spacing:9.530190px;}
.ws75{word-spacing:9.569463px;}
.ws96{word-spacing:9.634917px;}
.ws80{word-spacing:9.700372px;}
.wscf{word-spacing:9.765826px;}
.ws2f{word-spacing:9.896736px;}
.ws64{word-spacing:10.093099px;}
.wsdc{word-spacing:10.158554px;}
.ws1f{word-spacing:10.224009px;}
.ws8f{word-spacing:10.289463px;}
.ws69{word-spacing:10.381100px;}
.ws49{word-spacing:10.551282px;}
.ws97{word-spacing:10.747645px;}
.ws78{word-spacing:10.813100px;}
.wsdf{word-spacing:10.816214px;}
.ws6e{word-spacing:11.009464px;}
.ws74{word-spacing:11.035646px;}
.ws7d{word-spacing:11.205828px;}
.wsab{word-spacing:11.271282px;}
.wsac{word-spacing:11.284261px;}
.ws3a{word-spacing:11.336737px;}
.ws46{word-spacing:11.467646px;}
.ws92{word-spacing:11.533101px;}
.wsd5{word-spacing:11.664010px;}
.wse7{word-spacing:11.677101px;}
.wsde{word-spacing:11.729464px;}
.ws8a{word-spacing:11.794919px;}
.ws3e{word-spacing:11.860374px;}
.ws91{word-spacing:11.925828px;}
.ws66{word-spacing:11.991283px;}
.ws85{word-spacing:12.122192px;}
.wsb5{word-spacing:12.253101px;}
.ws57{word-spacing:12.318556px;}
.wsae{word-spacing:12.384010px;}
.ws4e{word-spacing:12.645829px;}
.wsdd{word-spacing:12.658920px;}
.wsdb{word-spacing:12.776738px;}
.wsad{word-spacing:13.169466px;}
.wsa9{word-spacing:13.205859px;}
.ws1b{word-spacing:13.300375px;}
.wsc9{word-spacing:13.431284px;}
.ws90{word-spacing:13.496739px;}
.ws71{word-spacing:13.889466px;}
.ws9f{word-spacing:14.216739px;}
.wse6{word-spacing:14.347648px;}
.ws93{word-spacing:14.413103px;}
.ws29{word-spacing:14.478558px;}
.wsf0{word-spacing:14.674921px;}
.wse2{word-spacing:15.787650px;}
.ws70{word-spacing:15.944741px;}
.wse3{word-spacing:17.424015px;}
.wse4{word-spacing:19.335289px;}
.wse5{word-spacing:20.893108px;}
.wsef{word-spacing:21.613109px;}
.ws1{word-spacing:23.312640px;}
.wsd8{word-spacing:23.380383px;}
.wse1{word-spacing:24.689475px;}
.wse0{word-spacing:33.853119px;}
.ws88{word-spacing:58.281600px;}
.wseb{word-spacing:69.198603px;}
.wsf{word-spacing:69.937725px;}
.wse9{word-spacing:75.613154px;}
.wsea{word-spacing:145.715031px;}
.wsec{word-spacing:546.077818px;}
._29{margin-left:-36.893585px;}
._0{margin-left:-8.056807px;}
._1c{margin-left:-6.283642px;}
._5{margin-left:-5.021150px;}
._13{margin-left:-3.665458px;}
._1{margin-left:-1.936742px;}
._2{width:1.733492px;}
._1d{width:2.754620px;}
._e{width:4.197873px;}
._24{width:15.970922px;}
._8{width:17.179520px;}
._c{width:18.621783px;}
._23{width:20.290926px;}
._1a{width:21.661904px;}
._15{width:22.803637px;}
._3{width:23.874388px;}
._28{width:25.155225px;}
._7{width:26.468662px;}
._a{width:27.688097px;}
._6{width:28.871615px;}
._11{width:30.043661px;}
._4{width:31.202863px;}
._27{width:32.734186px;}
._20{width:33.905483px;}
._25{width:35.472470px;}
._18{width:37.142539px;}
._21{width:38.186151px;}
._1f{width:39.358657px;}
._b{width:40.731107px;}
._16{width:42.068962px;}
._9{width:43.923137px;}
._f{width:45.490947px;}
._22{width:46.866244px;}
._10{width:48.802236px;}
._26{width:50.908447px;}
._19{width:52.627607px;}
._17{width:54.208072px;}
._1e{width:55.612399px;}
._2b{width:56.669161px;}
._d{width:58.408830px;}
._33{width:60.656511px;}
._14{width:62.024065px;}
._31{width:66.233169px;}
._2a{width:68.901575px;}
._32{width:70.295759px;}
._1b{width:80.697600px;}
._37{width:82.766287px;}
._2f{width:85.730294px;}
._2d{width:89.345529px;}
._30{width:91.879108px;}
._12{width:96.836850px;}
._2e{width:104.215387px;}
._2c{width:118.924122px;}
._36{width:224.574733px;}
._34{width:243.719149px;}
._35{width:452.749181px;}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:47.820600px;}
.fs2{font-size:59.775600px;}
.fs4{font-size:65.454600px;}
.fs1{font-size:71.731200px;}
.fs3{font-size:86.077200px;}
.fs0{font-size:103.292400px;}
.y0{bottom:0.000000px;}
.y2b{bottom:40.207500px;}
.y150{bottom:83.763000px;}
.y2a{bottom:85.039500px;}
.y7a{bottom:85.983000px;}
.ya5{bottom:90.814500px;}
.y14d{bottom:92.169000px;}
.y126{bottom:93.844500px;}
.yf1{bottom:96.535500px;}
.y58{bottom:97.398000px;}
.y166{bottom:99.547500px;}
.y1a2{bottom:102.331500px;}
.y14c{bottom:103.393500px;}
.y29{bottom:105.363000px;}
.y79{bottom:106.308000px;}
.ycd{bottom:110.922000px;}
.ya4{bottom:111.138000px;}
.y125{bottom:114.168000px;}
.yf0{bottom:116.859000px;}
.y57{bottom:117.721500px;}
.y14f{bottom:118.939500px;}
.y165{bottom:119.871000px;}
.y1a1{bottom:122.655000px;}
.y14e{bottom:123.849000px;}
.y28{bottom:125.686500px;}
.ycc{bottom:131.247000px;}
.y17b{bottom:131.254500px;}
.ya3{bottom:131.463000px;}
.y124{bottom:134.491500px;}
.yef{bottom:137.182500px;}
.y78{bottom:137.199000px;}
.y56{bottom:138.045000px;}
.y164{bottom:140.194500px;}
.y1a0{bottom:142.978500px;}
.y27{bottom:146.010000px;}
.y111{bottom:146.011500px;}
.ycb{bottom:151.570500px;}
.y17a{bottom:151.578000px;}
.y14b{bottom:151.747500px;}
.y123{bottom:154.815000px;}
.yee{bottom:157.507500px;}
.y55{bottom:158.368500px;}
.ya2{bottom:158.511000px;}
.y163{bottom:160.518000px;}
.y19f{bottom:163.302000px;}
.y26{bottom:166.335000px;}
.yca{bottom:171.894000px;}
.y179{bottom:171.901500px;}
.y14a{bottom:172.071000px;}
.y122{bottom:175.138500px;}
.yed{bottom:177.831000px;}
.y54{bottom:178.693500px;}
.ya1{bottom:178.834500px;}
.y162{bottom:180.841500px;}
.y77{bottom:181.018500px;}
.y25{bottom:186.658500px;}
.yc9{bottom:192.217500px;}
.y178{bottom:192.225000px;}
.y149{bottom:192.394500px;}
.y121{bottom:195.462000px;}
.y19e{bottom:197.076000px;}
.y53{bottom:199.017000px;}
.ya0{bottom:199.158000px;}
.y161{bottom:201.166500px;}
.y76{bottom:201.342000px;}
.y24{bottom:206.982000px;}
.yec{bottom:211.603500px;}
.yc8{bottom:212.541000px;}
.y177{bottom:212.550000px;}
.y148{bottom:212.718000px;}
.y120{bottom:215.787000px;}
.y19d{bottom:217.399500px;}
.y52{bottom:219.340500px;}
.y9f{bottom:219.483000px;}
.y160{bottom:221.490000px;}
.y75{bottom:221.665500px;}
.y23{bottom:227.305500px;}
.yeb{bottom:231.928500px;}
.yc7{bottom:232.866000px;}
.y176{bottom:232.873500px;}
.y11f{bottom:236.110500px;}
.y147{bottom:236.926500px;}
.y19c{bottom:237.723000px;}
.y51{bottom:239.664000px;}
.y15f{bottom:241.813500px;}
.y74{bottom:241.990500px;}
.y22{bottom:247.629000px;}
.y146{bottom:247.956000px;}
.yc6{bottom:253.189500px;}
.y175{bottom:253.197000px;}
.y9e{bottom:253.255500px;}
.y130{bottom:255.082500px;}
.y11e{bottom:256.434000px;}
.y110{bottom:258.198000px;}
.y50{bottom:259.987500px;}
.y73{bottom:262.314000px;}
.yea{bottom:262.819500px;}
.y21{bottom:267.954000px;}
.y145{bottom:268.279500px;}
.y19b{bottom:271.497000px;}
.yc5{bottom:273.513000px;}
.y174{bottom:273.520500px;}
.y9d{bottom:273.579000px;}
.y12f{bottom:275.406000px;}
.y11d{bottom:276.757500px;}
.y15e{bottom:278.341500px;}
.y4f{bottom:280.312500px;}
.y72{bottom:282.637500px;}
.y20{bottom:288.277500px;}
.y144{bottom:288.603000px;}
.y19a{bottom:291.820500px;}
.yc4{bottom:293.836500px;}
.y173{bottom:293.844000px;}
.y9c{bottom:293.902500px;}
.y12e{bottom:295.731000px;}
.y11c{bottom:297.081000px;}
.y4e{bottom:300.636000px;}
.y10f{bottom:301.797000px;}
.y71{bottom:302.961000px;}
.ye9{bottom:306.639000px;}
.y1f{bottom:308.601000px;}
.y143{bottom:308.926500px;}
.y199{bottom:312.144000px;}
.yc3{bottom:314.160000px;}
.y172{bottom:314.169000px;}
.y12d{bottom:316.054500px;}
.y11b{bottom:317.406000px;}
.y9b{bottom:320.952000px;}
.y4d{bottom:320.959500px;}
.y10e{bottom:322.120500px;}
.y70{bottom:323.284500px;}
.y1e{bottom:328.924500px;}
.y142{bottom:329.251500px;}
.y15d{bottom:329.899500px;}
.ye8{bottom:332.940000px;}
.yc2{bottom:334.485000px;}
.y12c{bottom:336.378000px;}
.y11a{bottom:337.729500px;}
.y9a{bottom:341.275500px;}
.y4c{bottom:341.283000px;}
.y10d{bottom:342.444000px;}
.y6f{bottom:343.609500px;}
.y198{bottom:345.918000px;}
.y1d{bottom:349.248000px;}
.y141{bottom:349.575000px;}
.y15c{bottom:350.223000px;}
.y171{bottom:350.697000px;}
.yc1{bottom:354.808500px;}
.y12b{bottom:356.701500px;}
.y119{bottom:358.053000px;}
.ye7{bottom:359.241000px;}
.y99{bottom:361.599000px;}
.y4b{bottom:361.606500px;}
.y10c{bottom:362.767500px;}
.y6e{bottom:363.933000px;}
.y197{bottom:366.241500px;}
.y1c{bottom:369.573000px;}
.y140{bottom:369.898500px;}
.y15b{bottom:370.548000px;}
.yc0{bottom:375.132000px;}
.y12a{bottom:377.025000px;}
.y98{bottom:381.922500px;}
.y4a{bottom:381.931500px;}
.y10b{bottom:383.091000px;}
.y6d{bottom:384.256500px;}
.y196{bottom:386.565000px;}
.y1b{bottom:389.896500px;}
.y13f{bottom:390.222000px;}
.ye6{bottom:393.015000px;}
.ybf{bottom:395.455500px;}
.y97{bottom:402.247500px;}
.y49{bottom:402.255000px;}
.y118{bottom:402.406500px;}
.y6c{bottom:404.580000px;}
.y129{bottom:407.917500px;}
.y1a{bottom:410.220000px;}
.y13e{bottom:410.545500px;}
.y15a{bottom:411.720000px;}
.ye5{bottom:413.338500px;}
.ybe{bottom:415.779000px;}
.y10a{bottom:416.397000px;}
.y195{bottom:420.339000px;}
.y170{bottom:422.578500px;}
.y96{bottom:429.295500px;}
.y19{bottom:430.543500px;}
.y13d{bottom:430.870500px;}
.y6b{bottom:435.472500px;}
.ybd{bottom:436.102500px;}
.y109{bottom:436.720500px;}
.y48{bottom:438.783000px;}
.y194{bottom:440.662500px;}
.y16f{bottom:442.902000px;}
.ye4{bottom:447.112500px;}
.y95{bottom:449.619000px;}
.y18{bottom:450.867000px;}
.y13c{bottom:451.194000px;}
.ybc{bottom:456.427500px;}
.y108{bottom:457.044000px;}
.y128{bottom:460.341000px;}
.y193{bottom:460.986000px;}
.y16e{bottom:463.225500px;}
.y94{bottom:469.942500px;}
.y17{bottom:471.192000px;}
.y13b{bottom:471.517500px;}
.ye3{bottom:473.413500px;}
.ybb{bottom:476.751000px;}
.y107{bottom:477.369000px;}
.y6a{bottom:479.292000px;}
.y16d{bottom:483.550500px;}
.y93{bottom:490.267500px;}
.y47{bottom:490.341000px;}
.y16{bottom:491.515500px;}
.y13a{bottom:491.841000px;}
.y192{bottom:494.758500px;}
.yba{bottom:497.074500px;}
.y106{bottom:497.692500px;}
.y69{bottom:499.615500px;}
.ye2{bottom:499.714500px;}
.y16c{bottom:503.874000px;}
.y92{bottom:510.591000px;}
.y46{bottom:510.664500px;}
.y15{bottom:511.839000px;}
.y139{bottom:512.164500px;}
.y191{bottom:515.083500px;}
.yb9{bottom:517.398000px;}
.y105{bottom:518.016000px;}
.y68{bottom:519.939000px;}
.y16b{bottom:524.197500px;}
.y91{bottom:530.914500px;}
.y45{bottom:530.988000px;}
.y14{bottom:532.162500px;}
.y138{bottom:532.489500px;}
.ye1{bottom:533.488500px;}
.yb8{bottom:537.721500px;}
.y104{bottom:538.339500px;}
.y67{bottom:540.262500px;}
.y16a{bottom:544.521000px;}
.y190{bottom:548.856000px;}
.y44{bottom:551.313000px;}
.y13{bottom:552.486000px;}
.y137{bottom:552.813000px;}
.ye0{bottom:553.812000px;}
.yb7{bottom:558.046500px;}
.y90{bottom:564.688500px;}
.y169{bottom:564.844500px;}
.y18f{bottom:569.179500px;}
.y43{bottom:571.636500px;}
.y136{bottom:573.136500px;}
.y66{bottom:574.036500px;}
.y103{bottom:575.193000px;}
.yb6{bottom:578.370000px;}
.y8f{bottom:585.012000px;}
.ydf{bottom:587.586000px;}
.y12{bottom:589.015500px;}
.y18e{bottom:589.504500px;}
.y42{bottom:591.960000px;}
.y65{bottom:594.360000px;}
.yb5{bottom:598.693500px;}
.y168{bottom:601.374000px;}
.y8e{bottom:605.335500px;}
.y102{bottom:607.795500px;}
.y41{bottom:612.283500px;}
.yde{bottom:613.887000px;}
.y64{bottom:614.683500px;}
.yb4{bottom:619.017000px;}
.y134{bottom:620.923500px;}
.y135{bottom:621.414000px;}
.y18d{bottom:623.277000px;}
.y8d{bottom:625.659000px;}
.y101{bottom:628.120500px;}
.y40{bottom:632.607000px;}
.ydd{bottom:640.188000px;}
.y11{bottom:640.231500px;}
.y18c{bottom:643.600500px;}
.y100{bottom:648.444000px;}
.y63{bottom:648.457500px;}
.yb3{bottom:649.909500px;}
.y3f{bottom:652.932000px;}
.y8c{bottom:656.551500px;}
.y10{bottom:658.164000px;}
.y133{bottom:665.380500px;}
.yff{bottom:668.767500px;}
.y62{bottom:668.781000px;}
.y3e{bottom:673.255500px;}
.ydc{bottom:673.962000px;}
.yf{bottom:676.096500px;}
.y18b{bottom:677.374500px;}
.y132{bottom:685.705500px;}
.yfe{bottom:689.091000px;}
.y61{bottom:689.104500px;}
.y3d{bottom:693.579000px;}
.yb2{bottom:693.729000px;}
.ye{bottom:694.030500px;}
.ydb{bottom:694.285500px;}
.y18a{bottom:697.698000px;}
.y8b{bottom:700.371000px;}
.y60{bottom:709.428000px;}
.yd{bottom:711.963000px;}
.y3c{bottom:713.902500px;}
.yb1{bottom:714.052500px;}
.y189{bottom:718.021500px;}
.y8a{bottom:720.694500px;}
.yfd{bottom:722.397000px;}
.yda{bottom:728.058000px;}
.yc{bottom:729.895500px;}
.y131{bottom:730.059000px;}
.y3b{bottom:734.226000px;}
.y89{bottom:741.018000px;}
.yfc{bottom:742.720500px;}
.y5f{bottom:743.202000px;}
.yb{bottom:747.828000px;}
.yb0{bottom:750.580500px;}
.yd9{bottom:754.360500px;}
.y3a{bottom:754.551000px;}
.y117{bottom:761.134500px;}
.y88{bottom:761.341500px;}
.yfb{bottom:763.044000px;}
.y5e{bottom:763.525500px;}
.ya{bottom:765.760500px;}
.y39{bottom:774.874500px;}
.yd8{bottom:780.661500px;}
.y116{bottom:781.458000px;}
.y87{bottom:781.665000px;}
.yfa{bottom:783.367500px;}
.y9{bottom:783.693000px;}
.y5d{bottom:783.849000px;}
.y127{bottom:790.291500px;}
.y38{bottom:795.198000px;}
.y8{bottom:801.627000px;}
.y115{bottom:801.781500px;}
.y86{bottom:801.988500px;}
.yaf{bottom:802.138500px;}
.y5c{bottom:804.172500px;}
.y188{bottom:806.109000px;}
.y167{bottom:811.402500px;}
.yd7{bottom:814.435500px;}
.y37{bottom:815.521500px;}
.yf9{bottom:816.673500px;}
.y7{bottom:819.559500px;}
.y114{bottom:822.105000px;}
.y85{bottom:822.313500px;}
.yae{bottom:822.462000px;}
.y187{bottom:826.432500px;}
.yd6{bottom:834.759000px;}
.y36{bottom:835.845000px;}
.yf8{bottom:836.997000px;}
.y6{bottom:837.492000px;}
.y5b{bottom:842.430000px;}
.y84{bottom:842.637000px;}
.yad{bottom:842.787000px;}
.y1a9{bottom:842.935500px;}
.y186{bottom:846.756000px;}
.y113{bottom:852.997500px;}
.y5{bottom:855.424500px;}
.y35{bottom:856.170000px;}
.yf7{bottom:857.320500px;}
.y159{bottom:858.940500px;}
.y5a{bottom:862.753500px;}
.y83{bottom:862.960500px;}
.yac{bottom:863.110500px;}
.y1a8{bottom:863.259000px;}
.y185{bottom:867.079500px;}
.yd5{bottom:868.531500px;}
.y34{bottom:876.493500px;}
.yf6{bottom:877.645500px;}
.y158{bottom:879.264000px;}
.y4{bottom:880.525500px;}
.y82{bottom:883.284000px;}
.yab{bottom:883.434000px;}
.y184{bottom:887.403000px;}
.y59{bottom:893.646000px;}
.yd4{bottom:894.834000px;}
.y33{bottom:896.817000px;}
.y1a7{bottom:897.033000px;}
.y157{bottom:899.587500px;}
.y81{bottom:903.607500px;}
.yaa{bottom:903.757500px;}
.y183{bottom:907.728000px;}
.yf5{bottom:910.950000px;}
.y32{bottom:917.140500px;}
.y1a6{bottom:917.356500px;}
.y156{bottom:919.912500px;}
.yd3{bottom:921.135000px;}
.y80{bottom:923.932500px;}
.y182{bottom:928.051500px;}
.yf4{bottom:931.273500px;}
.y31{bottom:937.464000px;}
.ya9{bottom:937.531500px;}
.y3{bottom:938.763000px;}
.y155{bottom:940.236000px;}
.y7f{bottom:944.256000px;}
.yd2{bottom:947.436000px;}
.y181{bottom:948.375000px;}
.y1a5{bottom:951.130500px;}
.yf3{bottom:951.598500px;}
.y112{bottom:953.668500px;}
.y30{bottom:957.789000px;}
.ya8{bottom:957.855000px;}
.y154{bottom:962.806500px;}
.y7e{bottom:964.579500px;}
.y180{bottom:968.698500px;}
.y1a4{bottom:971.454000px;}
.yf2{bottom:971.922000px;}
.y2{bottom:975.451500px;}
.ya7{bottom:978.178500px;}
.y151{bottom:978.870000px;}
.y153{bottom:979.918500px;}
.yd1{bottom:981.210000px;}
.y7d{bottom:984.903000px;}
.y152{bottom:985.252500px;}
.y17f{bottom:989.022000px;}
.y1a3{bottom:991.777500px;}
.y2f{bottom:994.317000px;}
.ya6{bottom:998.502000px;}
.yd0{bottom:1001.533500px;}
.y7c{bottom:1005.226500px;}
.y17e{bottom:1009.347000px;}
.y1{bottom:1020.918000px;}
.y7b{bottom:1025.551500px;}
.y17d{bottom:1029.670500px;}
.ycf{bottom:1035.306000px;}
.y2e{bottom:1045.875000px;}
.y17c{bottom:1049.994000px;}
.yce{bottom:1055.631000px;}
.y2d{bottom:1066.198500px;}
.y2c{bottom:1086.522000px;}
.hf{height:2.618184px;}
.h14{height:14.735702px;}
.he{height:33.665702px;}
.h3{height:42.141798px;}
.h4{height:44.831700px;}
.h16{height:45.425492px;}
.h8{height:46.145493px;}
.ha{height:47.128950px;}
.h6{height:49.090950px;}
.hb{height:49.260579px;}
.h7{height:50.211840px;}
.h2{height:53.798400px;}
.h11{height:57.419702px;}
.h10{height:58.830699px;}
.h5{height:60.254040px;}
.h1{height:72.511265px;}
.h13{height:74.904699px;}
.hc{height:93.208950px;}
.hd{height:93.376950px;}
.h9{height:95.990184px;}
.h12{height:108.707702px;}
.h15{height:113.344950px;}
.h0{height:1188.000000px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x7{left:127.558500px;}
.x10{left:128.598000px;}
.x1c{left:135.741000px;}
.x8{left:152.964000px;}
.x1d{left:161.196000px;}
.x6{left:168.468000px;}
.xa{left:186.877500px;}
.xc{left:189.022500px;}
.x5{left:190.884000px;}
.xb{left:204.000000px;}
.xd{left:226.545000px;}
.x1{left:297.384000px;}
.x2{left:326.049000px;}
.xe{left:339.100500px;}
.x11{left:360.505500px;}
.x19{left:370.086000px;}
.x13{left:377.583000px;}
.xf{left:384.700500px;}
.x3{left:402.424500px;}
.x4{left:426.123000px;}
.x12{left:433.783500px;}
.x14{left:436.422000px;}
.x1a{left:443.772000px;}
.x16{left:450.765000px;}
.x17{left:452.305500px;}
.x9{left:454.909500px;}
.x15{left:458.730000px;}
.x1b{left:461.044500px;}
.x18{left:474.402000px;}
@media print{
.v7{vertical-align:-58.752000pt;}
.v6{vertical-align:-50.026667pt;}
.v11{vertical-align:-16.826667pt;}
.v1{vertical-align:-8.725333pt;}
.v5{vertical-align:-6.389333pt;}
.v0{vertical-align:0.000000pt;}
.v10{vertical-align:8.474667pt;}
.vd{vertical-align:9.477333pt;}
.v8{vertical-align:16.810667pt;}
.ve{vertical-align:21.114667pt;}
.vb{vertical-align:24.021333pt;}
.vc{vertical-align:29.738667pt;}
.v4{vertical-align:30.634667pt;}
.v3{vertical-align:39.360000pt;}
.va{vertical-align:48.282667pt;}
.v9{vertical-align:50.026667pt;}
.vf{vertical-align:66.704000pt;}
.v2{vertical-align:82.997333pt;}
.ls0{letter-spacing:0.000000pt;}
.ls1b{letter-spacing:0.001146pt;}
.lsc{letter-spacing:0.001431pt;}
.ls5{letter-spacing:0.002397pt;}
.lsa{letter-spacing:0.002405pt;}
.ls20{letter-spacing:0.004347pt;}
.ls21{letter-spacing:0.451842pt;}
.ls15{letter-spacing:1.617432pt;}
.ls18{letter-spacing:1.622765pt;}
.ls9{letter-spacing:2.086764pt;}
.ls1c{letter-spacing:2.657146pt;}
.lsb{letter-spacing:2.658591pt;}
.ls19{letter-spacing:9.693077pt;}
.lsd{letter-spacing:15.585146pt;}
.ls6{letter-spacing:15.590479pt;}
.ls7{letter-spacing:16.623477pt;}
.ls8{letter-spacing:16.916811pt;}
.lse{letter-spacing:16.922144pt;}
.ls1e{letter-spacing:17.708577pt;}
.ls22{letter-spacing:18.813258pt;}
.ls16{letter-spacing:18.818591pt;}
.ls23{letter-spacing:19.306144pt;}
.ls1f{letter-spacing:20.363812pt;}
.ls26{letter-spacing:20.849431pt;}
.ls14{letter-spacing:21.265432pt;}
.ls25{letter-spacing:21.425146pt;}
.ls13{letter-spacing:23.202397pt;}
.ls11{letter-spacing:23.207730pt;}
.ls2{letter-spacing:24.801428pt;}
.ls1a{letter-spacing:24.833432pt;}
.ls12{letter-spacing:25.286764pt;}
.ls10{letter-spacing:26.199730pt;}
.ls1{letter-spacing:29.087976pt;}
.ls3{letter-spacing:29.089427pt;}
.ls17{letter-spacing:48.273181pt;}
.ls4{letter-spacing:136.666144pt;}
.lsf{letter-spacing:686.834591pt;}
.ls24{letter-spacing:804.978591pt;}
.ls1d{letter-spacing:817.287925pt;}
.wsa6{word-spacing:-37.899668pt;}
.wsb8{word-spacing:-29.521250pt;}
.wsb9{word-spacing:-28.183296pt;}
.ws2b{word-spacing:-16.162923pt;}
.wse8{word-spacing:-14.871285pt;}
.wsa7{word-spacing:-9.178921pt;}
.wsc1{word-spacing:-7.474422pt;}
.wsbb{word-spacing:-6.973498pt;}
.wsb7{word-spacing:-5.690187pt;}
.wsc2{word-spacing:-3.247604pt;}
.ws63{word-spacing:-2.897457pt;}
.wsc6{word-spacing:-2.373820pt;}
.ws26{word-spacing:-2.199275pt;}
.ws68{word-spacing:-2.082911pt;}
.ws84{word-spacing:-1.850183pt;}
.ws30{word-spacing:-1.792001pt;}
.ws99{word-spacing:-1.733820pt;}
.ws7c{word-spacing:-1.617456pt;}
.ws5e{word-spacing:-1.501092pt;}
.ws59{word-spacing:-1.442910pt;}
.ws16{word-spacing:-1.384728pt;}
.ws8c{word-spacing:-1.326547pt;}
.ws94{word-spacing:-1.093819pt;}
.wsa5{word-spacing:-0.977455pt;}
.ws5a{word-spacing:-0.919273pt;}
.ws19{word-spacing:-0.802910pt;}
.ws1c{word-spacing:-0.686546pt;}
.ws53{word-spacing:-0.663273pt;}
.ws86{word-spacing:-0.628364pt;}
.ws12{word-spacing:-0.570182pt;}
.ws31{word-spacing:-0.512000pt;}
.ws47{word-spacing:-0.453819pt;}
.ws8{word-spacing:-0.414444pt;}
.wsc7{word-spacing:-0.395637pt;}
.ws9d{word-spacing:-0.337455pt;}
.ws6f{word-spacing:-0.162909pt;}
.wsa8{word-spacing:-0.058182pt;}
.ws5b{word-spacing:-0.046545pt;}
.wsc3{word-spacing:-0.042507pt;}
.ws24{word-spacing:0.000000pt;}
.wsbd{word-spacing:0.011636pt;}
.ws1a{word-spacing:0.069818pt;}
.ws43{word-spacing:0.128000pt;}
.ws6b{word-spacing:0.186182pt;}
.ws2d{word-spacing:0.418909pt;}
.wsd2{word-spacing:0.477091pt;}
.ws11{word-spacing:0.593455pt;}
.ws5c{word-spacing:0.651637pt;}
.ws72{word-spacing:0.709819pt;}
.ws76{word-spacing:0.768001pt;}
.ws3f{word-spacing:0.826183pt;}
.wsaa{word-spacing:0.858412pt;}
.ws2a{word-spacing:0.884364pt;}
.ws17{word-spacing:1.000728pt;}
.wsd4{word-spacing:1.058910pt;}
.wsd9{word-spacing:1.232327pt;}
.ws3d{word-spacing:1.233456pt;}
.wsd6{word-spacing:1.291637pt;}
.ws6{word-spacing:1.338973pt;}
.ws8e{word-spacing:1.349819pt;}
.ws65{word-spacing:1.466183pt;}
.wsbf{word-spacing:1.524365pt;}
.wsbe{word-spacing:1.545075pt;}
.ws32{word-spacing:1.582547pt;}
.ws67{word-spacing:1.698911pt;}
.ws28{word-spacing:1.757092pt;}
.ws40{word-spacing:1.815274pt;}
.ws2c{word-spacing:1.873456pt;}
.ws6a{word-spacing:1.931638pt;}
.ws48{word-spacing:2.106184pt;}
.ws45{word-spacing:2.164365pt;}
.ws3c{word-spacing:2.280729pt;}
.ws7{word-spacing:2.295383pt;}
.ws41{word-spacing:2.338911pt;}
.wsb4{word-spacing:2.397093pt;}
.wscc{word-spacing:2.455275pt;}
.ws9c{word-spacing:2.513457pt;}
.wsc5{word-spacing:2.571639pt;}
.wsc4{word-spacing:2.606408pt;}
.ws18{word-spacing:2.629820pt;}
.wsd1{word-spacing:2.688002pt;}
.wsb1{word-spacing:2.746184pt;}
.wsd3{word-spacing:2.804366pt;}
.ws20{word-spacing:2.862548pt;}
.ws36{word-spacing:2.920730pt;}
.ws5f{word-spacing:2.978912pt;}
.wse{word-spacing:2.986123pt;}
.ws50{word-spacing:3.037093pt;}
.ws13{word-spacing:3.211639pt;}
.wsc0{word-spacing:3.230949pt;}
.ws4d{word-spacing:3.269821pt;}
.ws83{word-spacing:3.328003pt;}
.ws79{word-spacing:3.386185pt;}
.wsa{word-spacing:3.411194pt;}
.ws9e{word-spacing:3.444367pt;}
.ws4f{word-spacing:3.467639pt;}
.ws6d{word-spacing:3.502548pt;}
.wsa2{word-spacing:3.560730pt;}
.ws23{word-spacing:3.618912pt;}
.ws4{word-spacing:3.623730pt;}
.ws33{word-spacing:3.677094pt;}
.ws87{word-spacing:3.700367pt;}
.ws38{word-spacing:3.735276pt;}
.ws89{word-spacing:3.758549pt;}
.ws7b{word-spacing:3.793458pt;}
.ws5{word-spacing:3.836265pt;}
.ws5d{word-spacing:3.851640pt;}
.wsb3{word-spacing:3.909821pt;}
.ws7e{word-spacing:3.968003pt;}
.ws4a{word-spacing:3.985067pt;}
.ws98{word-spacing:4.026185pt;}
.ws3{word-spacing:4.101935pt;}
.ws10{word-spacing:4.200731pt;}
.ws15{word-spacing:4.258913pt;}
.ws14{word-spacing:4.317095pt;}
.wsd{word-spacing:4.473872pt;}
.wsb2{word-spacing:4.491640pt;}
.ws4c{word-spacing:4.549822pt;}
.wsd0{word-spacing:4.608004pt;}
.ws77{word-spacing:4.724368pt;}
.ws27{word-spacing:4.782067pt;}
.wsa1{word-spacing:4.782549pt;}
.ws0{word-spacing:4.811130pt;}
.ws22{word-spacing:4.840731pt;}
.wscd{word-spacing:4.898913pt;}
.ws8b{word-spacing:5.015277pt;}
.wsd7{word-spacing:5.073459pt;}
.wsee{word-spacing:5.085095pt;}
.ws73{word-spacing:5.131641pt;}
.ws4b{word-spacing:5.271277pt;}
.ws9a{word-spacing:5.306186pt;}
.wsb6{word-spacing:5.364368pt;}
.ws82{word-spacing:5.422550pt;}
.ws34{word-spacing:5.480732pt;}
.ws2{word-spacing:5.536549pt;}
.wsa3{word-spacing:5.597096pt;}
.ws52{word-spacing:5.713459pt;}
.ws44{word-spacing:5.771641pt;}
.ws9b{word-spacing:5.829823pt;}
.wsbc{word-spacing:5.946187pt;}
.wsda{word-spacing:5.957823pt;}
.wsca{word-spacing:6.004369pt;}
.ws39{word-spacing:6.178914pt;}
.ws51{word-spacing:6.237096pt;}
.ws25{word-spacing:6.295278pt;}
.ws2e{word-spacing:6.411642pt;}
.ws21{word-spacing:6.469824pt;}
.ws6c{word-spacing:6.528005pt;}
.ws42{word-spacing:6.586187pt;}
.ws60{word-spacing:6.644369pt;}
.ws81{word-spacing:6.702551pt;}
.wscb{word-spacing:6.760733pt;}
.ws3b{word-spacing:6.818915pt;}
.ws1d{word-spacing:6.877097pt;}
.wsb0{word-spacing:6.993460pt;}
.wsaf{word-spacing:7.033121pt;}
.wsa4{word-spacing:7.051642pt;}
.wsba{word-spacing:7.054408pt;}
.wsc{word-spacing:7.077431pt;}
.ws95{word-spacing:7.109824pt;}
.ws58{word-spacing:7.168006pt;}
.wsa0{word-spacing:7.284370pt;}
.ws55{word-spacing:7.342552pt;}
.wsc8{word-spacing:7.458915pt;}
.ws56{word-spacing:7.517097pt;}
.ws62{word-spacing:7.575279pt;}
.ws61{word-spacing:7.633461pt;}
.ws7a{word-spacing:7.691643pt;}
.ws35{word-spacing:7.924370pt;}
.ws9{word-spacing:7.927573pt;}
.ws8d{word-spacing:7.982552pt;}
.ws37{word-spacing:8.040734pt;}
.wsb{word-spacing:8.086975pt;}
.ws1e{word-spacing:8.098916pt;}
.wsed{word-spacing:8.122498pt;}
.ws7f{word-spacing:8.157098pt;}
.wsce{word-spacing:8.273461pt;}
.ws54{word-spacing:8.471280pt;}
.ws75{word-spacing:8.506189pt;}
.ws96{word-spacing:8.564371pt;}
.ws80{word-spacing:8.622553pt;}
.wscf{word-spacing:8.680735pt;}
.ws2f{word-spacing:8.797098pt;}
.ws64{word-spacing:8.971644pt;}
.wsdc{word-spacing:9.029826pt;}
.ws1f{word-spacing:9.088008pt;}
.ws8f{word-spacing:9.146189pt;}
.ws69{word-spacing:9.227644pt;}
.ws49{word-spacing:9.378917pt;}
.ws97{word-spacing:9.553463pt;}
.ws78{word-spacing:9.611644pt;}
.wsdf{word-spacing:9.614412pt;}
.ws6e{word-spacing:9.786190pt;}
.ws74{word-spacing:9.809463pt;}
.ws7d{word-spacing:9.960736pt;}
.wsab{word-spacing:10.018917pt;}
.wsac{word-spacing:10.030454pt;}
.ws3a{word-spacing:10.077099pt;}
.ws46{word-spacing:10.193463pt;}
.ws92{word-spacing:10.251645pt;}
.wsd5{word-spacing:10.368009pt;}
.wse7{word-spacing:10.379645pt;}
.wsde{word-spacing:10.426191pt;}
.ws8a{word-spacing:10.484372pt;}
.ws3e{word-spacing:10.542554pt;}
.ws91{word-spacing:10.600736pt;}
.ws66{word-spacing:10.658918pt;}
.ws85{word-spacing:10.775282pt;}
.wsb5{word-spacing:10.891645pt;}
.ws57{word-spacing:10.949827pt;}
.wsae{word-spacing:11.008009pt;}
.ws4e{word-spacing:11.240737pt;}
.wsdd{word-spacing:11.252373pt;}
.wsdb{word-spacing:11.357100pt;}
.wsad{word-spacing:11.706192pt;}
.wsa9{word-spacing:11.738541pt;}
.ws1b{word-spacing:11.822555pt;}
.wsc9{word-spacing:11.938919pt;}
.ws90{word-spacing:11.997101pt;}
.ws71{word-spacing:12.346192pt;}
.ws9f{word-spacing:12.637101pt;}
.wse6{word-spacing:12.753465pt;}
.ws93{word-spacing:12.811647pt;}
.ws29{word-spacing:12.869829pt;}
.wsf0{word-spacing:13.044375pt;}
.wse2{word-spacing:14.033466pt;}
.ws70{word-spacing:14.173103pt;}
.wse3{word-spacing:15.488013pt;}
.wse4{word-spacing:17.186923pt;}
.wse5{word-spacing:18.571652pt;}
.wsef{word-spacing:19.211652pt;}
.ws1{word-spacing:20.722347pt;}
.wsd8{word-spacing:20.782563pt;}
.wse1{word-spacing:21.946200pt;}
.wse0{word-spacing:30.091661pt;}
.ws88{word-spacing:51.805867pt;}
.wseb{word-spacing:61.509869pt;}
.wsf{word-spacing:62.166867pt;}
.wse9{word-spacing:67.211692pt;}
.wsea{word-spacing:129.524472pt;}
.wsec{word-spacing:485.402505pt;}
._29{margin-left:-32.794298pt;}
._0{margin-left:-7.161606pt;}
._1c{margin-left:-5.585459pt;}
._5{margin-left:-4.463245pt;}
._13{margin-left:-3.258185pt;}
._1{margin-left:-1.721549pt;}
._2{width:1.540882pt;}
._1d{width:2.448551pt;}
._e{width:3.731443pt;}
._24{width:14.196375pt;}
._8{width:15.270685pt;}
._c{width:16.552696pt;}
._23{width:18.036379pt;}
._1a{width:19.255026pt;}
._15{width:20.269899pt;}
._3{width:21.221678pt;}
._28{width:22.360200pt;}
._7{width:23.527699pt;}
._a{width:24.611642pt;}
._6{width:25.663658pt;}
._11{width:26.705477pt;}
._4{width:27.735878pt;}
._27{width:29.097054pt;}
._20{width:30.138207pt;}
._25{width:31.531084pt;}
._18{width:33.015590pt;}
._21{width:33.943245pt;}
._1f{width:34.985473pt;}
._b{width:36.205428pt;}
._16{width:37.394633pt;}
._9{width:39.042788pt;}
._f{width:40.436397pt;}
._22{width:41.658883pt;}
._10{width:43.379765pt;}
._26{width:45.251953pt;}
._19{width:46.780095pt;}
._17{width:48.184953pt;}
._1e{width:49.433244pt;}
._2b{width:50.372588pt;}
._d{width:51.918960pt;}
._33{width:53.916899pt;}
._14{width:55.132502pt;}
._31{width:58.873928pt;}
._2a{width:61.245845pt;}
._32{width:62.485119pt;}
._1b{width:71.731200pt;}
._37{width:73.570033pt;}
._2f{width:76.204706pt;}
._2d{width:79.418248pt;}
._30{width:81.670319pt;}
._12{width:86.077200pt;}
._2e{width:92.635899pt;}
._2c{width:105.710331pt;}
._36{width:199.621985pt;}
._34{width:216.639243pt;}
._35{width:402.443716pt;}
.fs5{font-size:42.507200pt;}
.fs2{font-size:53.133867pt;}
.fs4{font-size:58.181867pt;}
.fs1{font-size:63.761067pt;}
.fs3{font-size:76.513067pt;}
.fs0{font-size:91.815467pt;}
.y0{bottom:0.000000pt;}
.y2b{bottom:35.740000pt;}
.y150{bottom:74.456000pt;}
.y2a{bottom:75.590667pt;}
.y7a{bottom:76.429333pt;}
.ya5{bottom:80.724000pt;}
.y14d{bottom:81.928000pt;}
.y126{bottom:83.417333pt;}
.yf1{bottom:85.809333pt;}
.y58{bottom:86.576000pt;}
.y166{bottom:88.486667pt;}
.y1a2{bottom:90.961333pt;}
.y14c{bottom:91.905333pt;}
.y29{bottom:93.656000pt;}
.y79{bottom:94.496000pt;}
.ycd{bottom:98.597333pt;}
.ya4{bottom:98.789333pt;}
.y125{bottom:101.482667pt;}
.yf0{bottom:103.874667pt;}
.y57{bottom:104.641333pt;}
.y14f{bottom:105.724000pt;}
.y165{bottom:106.552000pt;}
.y1a1{bottom:109.026667pt;}
.y14e{bottom:110.088000pt;}
.y28{bottom:111.721333pt;}
.ycc{bottom:116.664000pt;}
.y17b{bottom:116.670667pt;}
.ya3{bottom:116.856000pt;}
.y124{bottom:119.548000pt;}
.yef{bottom:121.940000pt;}
.y78{bottom:121.954667pt;}
.y56{bottom:122.706667pt;}
.y164{bottom:124.617333pt;}
.y1a0{bottom:127.092000pt;}
.y27{bottom:129.786667pt;}
.y111{bottom:129.788000pt;}
.ycb{bottom:134.729333pt;}
.y17a{bottom:134.736000pt;}
.y14b{bottom:134.886667pt;}
.y123{bottom:137.613333pt;}
.yee{bottom:140.006667pt;}
.y55{bottom:140.772000pt;}
.ya2{bottom:140.898667pt;}
.y163{bottom:142.682667pt;}
.y19f{bottom:145.157333pt;}
.y26{bottom:147.853333pt;}
.yca{bottom:152.794667pt;}
.y179{bottom:152.801333pt;}
.y14a{bottom:152.952000pt;}
.y122{bottom:155.678667pt;}
.yed{bottom:158.072000pt;}
.y54{bottom:158.838667pt;}
.ya1{bottom:158.964000pt;}
.y162{bottom:160.748000pt;}
.y77{bottom:160.905333pt;}
.y25{bottom:165.918667pt;}
.yc9{bottom:170.860000pt;}
.y178{bottom:170.866667pt;}
.y149{bottom:171.017333pt;}
.y121{bottom:173.744000pt;}
.y19e{bottom:175.178667pt;}
.y53{bottom:176.904000pt;}
.ya0{bottom:177.029333pt;}
.y161{bottom:178.814667pt;}
.y76{bottom:178.970667pt;}
.y24{bottom:183.984000pt;}
.yec{bottom:188.092000pt;}
.yc8{bottom:188.925333pt;}
.y177{bottom:188.933333pt;}
.y148{bottom:189.082667pt;}
.y120{bottom:191.810667pt;}
.y19d{bottom:193.244000pt;}
.y52{bottom:194.969333pt;}
.y9f{bottom:195.096000pt;}
.y160{bottom:196.880000pt;}
.y75{bottom:197.036000pt;}
.y23{bottom:202.049333pt;}
.yeb{bottom:206.158667pt;}
.yc7{bottom:206.992000pt;}
.y176{bottom:206.998667pt;}
.y11f{bottom:209.876000pt;}
.y147{bottom:210.601333pt;}
.y19c{bottom:211.309333pt;}
.y51{bottom:213.034667pt;}
.y15f{bottom:214.945333pt;}
.y74{bottom:215.102667pt;}
.y22{bottom:220.114667pt;}
.y146{bottom:220.405333pt;}
.yc6{bottom:225.057333pt;}
.y175{bottom:225.064000pt;}
.y9e{bottom:225.116000pt;}
.y130{bottom:226.740000pt;}
.y11e{bottom:227.941333pt;}
.y110{bottom:229.509333pt;}
.y50{bottom:231.100000pt;}
.y73{bottom:233.168000pt;}
.yea{bottom:233.617333pt;}
.y21{bottom:238.181333pt;}
.y145{bottom:238.470667pt;}
.y19b{bottom:241.330667pt;}
.yc5{bottom:243.122667pt;}
.y174{bottom:243.129333pt;}
.y9d{bottom:243.181333pt;}
.y12f{bottom:244.805333pt;}
.y11d{bottom:246.006667pt;}
.y15e{bottom:247.414667pt;}
.y4f{bottom:249.166667pt;}
.y72{bottom:251.233333pt;}
.y20{bottom:256.246667pt;}
.y144{bottom:256.536000pt;}
.y19a{bottom:259.396000pt;}
.yc4{bottom:261.188000pt;}
.y173{bottom:261.194667pt;}
.y9c{bottom:261.246667pt;}
.y12e{bottom:262.872000pt;}
.y11c{bottom:264.072000pt;}
.y4e{bottom:267.232000pt;}
.y10f{bottom:268.264000pt;}
.y71{bottom:269.298667pt;}
.ye9{bottom:272.568000pt;}
.y1f{bottom:274.312000pt;}
.y143{bottom:274.601333pt;}
.y199{bottom:277.461333pt;}
.yc3{bottom:279.253333pt;}
.y172{bottom:279.261333pt;}
.y12d{bottom:280.937333pt;}
.y11b{bottom:282.138667pt;}
.y9b{bottom:285.290667pt;}
.y4d{bottom:285.297333pt;}
.y10e{bottom:286.329333pt;}
.y70{bottom:287.364000pt;}
.y1e{bottom:292.377333pt;}
.y142{bottom:292.668000pt;}
.y15d{bottom:293.244000pt;}
.ye8{bottom:295.946667pt;}
.yc2{bottom:297.320000pt;}
.y12c{bottom:299.002667pt;}
.y11a{bottom:300.204000pt;}
.y9a{bottom:303.356000pt;}
.y4c{bottom:303.362667pt;}
.y10d{bottom:304.394667pt;}
.y6f{bottom:305.430667pt;}
.y198{bottom:307.482667pt;}
.y1d{bottom:310.442667pt;}
.y141{bottom:310.733333pt;}
.y15c{bottom:311.309333pt;}
.y171{bottom:311.730667pt;}
.yc1{bottom:315.385333pt;}
.y12b{bottom:317.068000pt;}
.y119{bottom:318.269333pt;}
.ye7{bottom:319.325333pt;}
.y99{bottom:321.421333pt;}
.y4b{bottom:321.428000pt;}
.y10c{bottom:322.460000pt;}
.y6e{bottom:323.496000pt;}
.y197{bottom:325.548000pt;}
.y1c{bottom:328.509333pt;}
.y140{bottom:328.798667pt;}
.y15b{bottom:329.376000pt;}
.yc0{bottom:333.450667pt;}
.y12a{bottom:335.133333pt;}
.y98{bottom:339.486667pt;}
.y4a{bottom:339.494667pt;}
.y10b{bottom:340.525333pt;}
.y6d{bottom:341.561333pt;}
.y196{bottom:343.613333pt;}
.y1b{bottom:346.574667pt;}
.y13f{bottom:346.864000pt;}
.ye6{bottom:349.346667pt;}
.ybf{bottom:351.516000pt;}
.y97{bottom:357.553333pt;}
.y49{bottom:357.560000pt;}
.y118{bottom:357.694667pt;}
.y6c{bottom:359.626667pt;}
.y129{bottom:362.593333pt;}
.y1a{bottom:364.640000pt;}
.y13e{bottom:364.929333pt;}
.y15a{bottom:365.973333pt;}
.ye5{bottom:367.412000pt;}
.ybe{bottom:369.581333pt;}
.y10a{bottom:370.130667pt;}
.y195{bottom:373.634667pt;}
.y170{bottom:375.625333pt;}
.y96{bottom:381.596000pt;}
.y19{bottom:382.705333pt;}
.y13d{bottom:382.996000pt;}
.y6b{bottom:387.086667pt;}
.ybd{bottom:387.646667pt;}
.y109{bottom:388.196000pt;}
.y48{bottom:390.029333pt;}
.y194{bottom:391.700000pt;}
.y16f{bottom:393.690667pt;}
.ye4{bottom:397.433333pt;}
.y95{bottom:399.661333pt;}
.y18{bottom:400.770667pt;}
.y13c{bottom:401.061333pt;}
.ybc{bottom:405.713333pt;}
.y108{bottom:406.261333pt;}
.y128{bottom:409.192000pt;}
.y193{bottom:409.765333pt;}
.y16e{bottom:411.756000pt;}
.y94{bottom:417.726667pt;}
.y17{bottom:418.837333pt;}
.y13b{bottom:419.126667pt;}
.ye3{bottom:420.812000pt;}
.ybb{bottom:423.778667pt;}
.y107{bottom:424.328000pt;}
.y6a{bottom:426.037333pt;}
.y16d{bottom:429.822667pt;}
.y93{bottom:435.793333pt;}
.y47{bottom:435.858667pt;}
.y16{bottom:436.902667pt;}
.y13a{bottom:437.192000pt;}
.y192{bottom:439.785333pt;}
.yba{bottom:441.844000pt;}
.y106{bottom:442.393333pt;}
.y69{bottom:444.102667pt;}
.ye2{bottom:444.190667pt;}
.y16c{bottom:447.888000pt;}
.y92{bottom:453.858667pt;}
.y46{bottom:453.924000pt;}
.y15{bottom:454.968000pt;}
.y139{bottom:455.257333pt;}
.y191{bottom:457.852000pt;}
.yb9{bottom:459.909333pt;}
.y105{bottom:460.458667pt;}
.y68{bottom:462.168000pt;}
.y16b{bottom:465.953333pt;}
.y91{bottom:471.924000pt;}
.y45{bottom:471.989333pt;}
.y14{bottom:473.033333pt;}
.y138{bottom:473.324000pt;}
.ye1{bottom:474.212000pt;}
.yb8{bottom:477.974667pt;}
.y104{bottom:478.524000pt;}
.y67{bottom:480.233333pt;}
.y16a{bottom:484.018667pt;}
.y190{bottom:487.872000pt;}
.y44{bottom:490.056000pt;}
.y13{bottom:491.098667pt;}
.y137{bottom:491.389333pt;}
.ye0{bottom:492.277333pt;}
.yb7{bottom:496.041333pt;}
.y90{bottom:501.945333pt;}
.y169{bottom:502.084000pt;}
.y18f{bottom:505.937333pt;}
.y43{bottom:508.121333pt;}
.y136{bottom:509.454667pt;}
.y66{bottom:510.254667pt;}
.y103{bottom:511.282667pt;}
.yb6{bottom:514.106667pt;}
.y8f{bottom:520.010667pt;}
.ydf{bottom:522.298667pt;}
.y12{bottom:523.569333pt;}
.y18e{bottom:524.004000pt;}
.y42{bottom:526.186667pt;}
.y65{bottom:528.320000pt;}
.yb5{bottom:532.172000pt;}
.y168{bottom:534.554667pt;}
.y8e{bottom:538.076000pt;}
.y102{bottom:540.262667pt;}
.y41{bottom:544.252000pt;}
.yde{bottom:545.677333pt;}
.y64{bottom:546.385333pt;}
.yb4{bottom:550.237333pt;}
.y134{bottom:551.932000pt;}
.y135{bottom:552.368000pt;}
.y18d{bottom:554.024000pt;}
.y8d{bottom:556.141333pt;}
.y101{bottom:558.329333pt;}
.y40{bottom:562.317333pt;}
.ydd{bottom:569.056000pt;}
.y11{bottom:569.094667pt;}
.y18c{bottom:572.089333pt;}
.y100{bottom:576.394667pt;}
.y63{bottom:576.406667pt;}
.yb3{bottom:577.697333pt;}
.y3f{bottom:580.384000pt;}
.y8c{bottom:583.601333pt;}
.y10{bottom:585.034667pt;}
.y133{bottom:591.449333pt;}
.yff{bottom:594.460000pt;}
.y62{bottom:594.472000pt;}
.y3e{bottom:598.449333pt;}
.ydc{bottom:599.077333pt;}
.yf{bottom:600.974667pt;}
.y18b{bottom:602.110667pt;}
.y132{bottom:609.516000pt;}
.yfe{bottom:612.525333pt;}
.y61{bottom:612.537333pt;}
.y3d{bottom:616.514667pt;}
.yb2{bottom:616.648000pt;}
.ye{bottom:616.916000pt;}
.ydb{bottom:617.142667pt;}
.y18a{bottom:620.176000pt;}
.y8b{bottom:622.552000pt;}
.y60{bottom:630.602667pt;}
.yd{bottom:632.856000pt;}
.y3c{bottom:634.580000pt;}
.yb1{bottom:634.713333pt;}
.y189{bottom:638.241333pt;}
.y8a{bottom:640.617333pt;}
.yfd{bottom:642.130667pt;}
.yda{bottom:647.162667pt;}
.yc{bottom:648.796000pt;}
.y131{bottom:648.941333pt;}
.y3b{bottom:652.645333pt;}
.y89{bottom:658.682667pt;}
.yfc{bottom:660.196000pt;}
.y5f{bottom:660.624000pt;}
.yb{bottom:664.736000pt;}
.yb0{bottom:667.182667pt;}
.yd9{bottom:670.542667pt;}
.y3a{bottom:670.712000pt;}
.y117{bottom:676.564000pt;}
.y88{bottom:676.748000pt;}
.yfb{bottom:678.261333pt;}
.y5e{bottom:678.689333pt;}
.ya{bottom:680.676000pt;}
.y39{bottom:688.777333pt;}
.yd8{bottom:693.921333pt;}
.y116{bottom:694.629333pt;}
.y87{bottom:694.813333pt;}
.yfa{bottom:696.326667pt;}
.y9{bottom:696.616000pt;}
.y5d{bottom:696.754667pt;}
.y127{bottom:702.481333pt;}
.y38{bottom:706.842667pt;}
.y8{bottom:712.557333pt;}
.y115{bottom:712.694667pt;}
.y86{bottom:712.878667pt;}
.yaf{bottom:713.012000pt;}
.y5c{bottom:714.820000pt;}
.y188{bottom:716.541333pt;}
.y167{bottom:721.246667pt;}
.yd7{bottom:723.942667pt;}
.y37{bottom:724.908000pt;}
.yf9{bottom:725.932000pt;}
.y7{bottom:728.497333pt;}
.y114{bottom:730.760000pt;}
.y85{bottom:730.945333pt;}
.yae{bottom:731.077333pt;}
.y187{bottom:734.606667pt;}
.yd6{bottom:742.008000pt;}
.y36{bottom:742.973333pt;}
.yf8{bottom:743.997333pt;}
.y6{bottom:744.437333pt;}
.y5b{bottom:748.826667pt;}
.y84{bottom:749.010667pt;}
.yad{bottom:749.144000pt;}
.y1a9{bottom:749.276000pt;}
.y186{bottom:752.672000pt;}
.y113{bottom:758.220000pt;}
.y5{bottom:760.377333pt;}
.y35{bottom:761.040000pt;}
.yf7{bottom:762.062667pt;}
.y159{bottom:763.502667pt;}
.y5a{bottom:766.892000pt;}
.y83{bottom:767.076000pt;}
.yac{bottom:767.209333pt;}
.y1a8{bottom:767.341333pt;}
.y185{bottom:770.737333pt;}
.yd5{bottom:772.028000pt;}
.y34{bottom:779.105333pt;}
.yf6{bottom:780.129333pt;}
.y158{bottom:781.568000pt;}
.y4{bottom:782.689333pt;}
.y82{bottom:785.141333pt;}
.yab{bottom:785.274667pt;}
.y184{bottom:788.802667pt;}
.y59{bottom:794.352000pt;}
.yd4{bottom:795.408000pt;}
.y33{bottom:797.170667pt;}
.y1a7{bottom:797.362667pt;}
.y157{bottom:799.633333pt;}
.y81{bottom:803.206667pt;}
.yaa{bottom:803.340000pt;}
.y183{bottom:806.869333pt;}
.yf5{bottom:809.733333pt;}
.y32{bottom:815.236000pt;}
.y1a6{bottom:815.428000pt;}
.y156{bottom:817.700000pt;}
.yd3{bottom:818.786667pt;}
.y80{bottom:821.273333pt;}
.y182{bottom:824.934667pt;}
.yf4{bottom:827.798667pt;}
.y31{bottom:833.301333pt;}
.ya9{bottom:833.361333pt;}
.y3{bottom:834.456000pt;}
.y155{bottom:835.765333pt;}
.y7f{bottom:839.338667pt;}
.yd2{bottom:842.165333pt;}
.y181{bottom:843.000000pt;}
.y1a5{bottom:845.449333pt;}
.yf3{bottom:845.865333pt;}
.y112{bottom:847.705333pt;}
.y30{bottom:851.368000pt;}
.ya8{bottom:851.426667pt;}
.y154{bottom:855.828000pt;}
.y7e{bottom:857.404000pt;}
.y180{bottom:861.065333pt;}
.y1a4{bottom:863.514667pt;}
.yf2{bottom:863.930667pt;}
.y2{bottom:867.068000pt;}
.ya7{bottom:869.492000pt;}
.y151{bottom:870.106667pt;}
.y153{bottom:871.038667pt;}
.yd1{bottom:872.186667pt;}
.y7d{bottom:875.469333pt;}
.y152{bottom:875.780000pt;}
.y17f{bottom:879.130667pt;}
.y1a3{bottom:881.580000pt;}
.y2f{bottom:883.837333pt;}
.ya6{bottom:887.557333pt;}
.yd0{bottom:890.252000pt;}
.y7c{bottom:893.534667pt;}
.y17e{bottom:897.197333pt;}
.y1{bottom:907.482667pt;}
.y7b{bottom:911.601333pt;}
.y17d{bottom:915.262667pt;}
.ycf{bottom:920.272000pt;}
.y2e{bottom:929.666667pt;}
.y17c{bottom:933.328000pt;}
.yce{bottom:938.338667pt;}
.y2d{bottom:947.732000pt;}
.y2c{bottom:965.797333pt;}
.hf{height:2.327275pt;}
.h14{height:13.098402pt;}
.he{height:29.925069pt;}
.h3{height:37.459376pt;}
.h4{height:39.850400pt;}
.h16{height:40.378215pt;}
.h8{height:41.018216pt;}
.ha{height:41.892400pt;}
.h6{height:43.636400pt;}
.hb{height:43.787181pt;}
.h7{height:44.632747pt;}
.h2{height:47.820800pt;}
.h11{height:51.039735pt;}
.h10{height:52.293955pt;}
.h5{height:53.559147pt;}
.h1{height:64.454458pt;}
.h13{height:66.581955pt;}
.hc{height:82.852400pt;}
.hd{height:83.001733pt;}
.h9{height:85.324608pt;}
.h12{height:96.629069pt;}
.h15{height:100.751067pt;}
.h0{height:1056.000000pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x7{left:113.385333pt;}
.x10{left:114.309333pt;}
.x1c{left:120.658667pt;}
.x8{left:135.968000pt;}
.x1d{left:143.285333pt;}
.x6{left:149.749333pt;}
.xa{left:166.113333pt;}
.xc{left:168.020000pt;}
.x5{left:169.674667pt;}
.xb{left:181.333333pt;}
.xd{left:201.373333pt;}
.x1{left:264.341333pt;}
.x2{left:289.821333pt;}
.xe{left:301.422667pt;}
.x11{left:320.449333pt;}
.x19{left:328.965333pt;}
.x13{left:335.629333pt;}
.xf{left:341.956000pt;}
.x3{left:357.710667pt;}
.x4{left:378.776000pt;}
.x12{left:385.585333pt;}
.x14{left:387.930667pt;}
.x1a{left:394.464000pt;}
.x16{left:400.680000pt;}
.x17{left:402.049333pt;}
.x9{left:404.364000pt;}
.x15{left:407.760000pt;}
.x1b{left:409.817333pt;}
.x18{left:421.690667pt;}
}




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