
    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_7e5459c02013b58c7f6c9ed6.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.202148;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_7a4e5e45d7149810cae9ed3d.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.091797;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_f0efa11d847c34d407da45f3.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.136230;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_f65e489c4894d65063767ac7.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.090332;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_fc7a937f71af6f1c821b02ab.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.091797;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_1036593e195a87948fbcc6ff.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.090332;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_0fdf8f1fad0275656c90a019.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.981934;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_5ad189b37a58e274b8a07206.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.739746;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_3029e42879cefdb0156e9d0e.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.051758;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_1298dca450ca315f421b6d85.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.981934;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_cf5b54b838ee9f69dcdff9c4.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.739746;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_efd8e52451867aa1930c0976.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.854004;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_bb7a9291769434ca79ffe2b8.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.854004;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_329f9597f7dce830d57ca99d.woff2')format("woff");}.ffe{font-family:ffe;line-height:1.053223;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:fff;src:url('chunks/assets/font_e435b0e305b3a2be09dac04e.woff2')format("woff");}.fff{font-family:fff;line-height:1.021484;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_e0b05e7120e4de7382e8a398.woff2')format("woff");}.ff10{font-family:ff10;line-height:1.090332;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_44793d54f74893ee43a09a79.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.708008;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);}
.v2{vertical-align:-30.420000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:30.420000px;}
.lsc{letter-spacing:-1.050000px;}
.ls3a{letter-spacing:-0.978000px;}
.ls26{letter-spacing:-0.810000px;}
.ls2d{letter-spacing:-0.702000px;}
.ls14{letter-spacing:-0.540600px;}
.ls1d{letter-spacing:-0.474600px;}
.ls35{letter-spacing:-0.463800px;}
.lse{letter-spacing:-0.420600px;}
.ls1e{letter-spacing:-0.344400px;}
.lsd{letter-spacing:-0.332400px;}
.ls16{letter-spacing:-0.306000px;}
.ls13{letter-spacing:-0.302400px;}
.ls3b{letter-spacing:-0.301800px;}
.ls32{letter-spacing:-0.301200px;}
.ls19{letter-spacing:-0.288000px;}
.ls3{letter-spacing:-0.270000px;}
.lsa{letter-spacing:-0.229800px;}
.ls2c{letter-spacing:-0.216000px;}
.ls33{letter-spacing:-0.207600px;}
.ls2f{letter-spacing:-0.202200px;}
.ls9{letter-spacing:-0.172200px;}
.ls5{letter-spacing:-0.144000px;}
.ls31{letter-spacing:-0.115800px;}
.ls25{letter-spacing:-0.109200px;}
.ls24{letter-spacing:-0.092400px;}
.ls15{letter-spacing:-0.091200px;}
.ls28{letter-spacing:-0.058320px;}
.ls21{letter-spacing:-0.030960px;}
.ls38{letter-spacing:-0.029520px;}
.ls36{letter-spacing:-0.018000px;}
.ls2{letter-spacing:0.000000px;}
.ls2b{letter-spacing:0.015120px;}
.ls22{letter-spacing:0.026640px;}
.ls1b{letter-spacing:0.048240px;}
.ls2e{letter-spacing:0.062400px;}
.lsf{letter-spacing:0.099600px;}
.ls1f{letter-spacing:0.126600px;}
.ls6{letter-spacing:0.129600px;}
.ls11{letter-spacing:0.150600px;}
.ls27{letter-spacing:0.158400px;}
.ls18{letter-spacing:0.179280px;}
.ls30{letter-spacing:0.186600px;}
.ls20{letter-spacing:0.214800px;}
.lsb{letter-spacing:0.231840px;}
.ls1a{letter-spacing:0.245400px;}
.ls34{letter-spacing:0.256200px;}
.ls39{letter-spacing:0.261600px;}
.ls10{letter-spacing:0.299400px;}
.ls2a{letter-spacing:0.375600px;}
.ls1c{letter-spacing:0.384000px;}
.ls23{letter-spacing:0.387360px;}
.ls29{letter-spacing:0.555840px;}
.ls17{letter-spacing:5.976000px;}
.ls0{letter-spacing:6.180000px;}
.ls4{letter-spacing:6.300000px;}
.ls1{letter-spacing:6.349680px;}
.ls37{letter-spacing:15.461280px;}
.ls12{letter-spacing:84.581280px;}
.ls7{letter-spacing:109.008000px;}
.ls8{letter-spacing:129.144000px;}
.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;}
}
.wse{word-spacing:-59.760000px;}
.ws3{word-spacing:-43.704000px;}
.ws6{word-spacing:-31.716720px;}
.ws2f{word-spacing:-31.414920px;}
.ws2{word-spacing:-27.821760px;}
.ws11{word-spacing:-21.924000px;}
.ws8{word-spacing:-19.038240px;}
.ws7{word-spacing:-18.866040px;}
.ws9{word-spacing:-18.808440px;}
.ws1f{word-spacing:-17.484720px;}
.ws1d{word-spacing:-17.476320px;}
.wsc{word-spacing:-17.400120px;}
.ws2e{word-spacing:-17.362320px;}
.ws14{word-spacing:-17.346120px;}
.wsd{word-spacing:-17.251320px;}
.wsb{word-spacing:-17.200320px;}
.ws23{word-spacing:-17.163120px;}
.ws1a{word-spacing:-17.127360px;}
.ws20{word-spacing:-17.115840px;}
.ws5{word-spacing:-17.100720px;}
.ws2d{word-spacing:-17.071200px;}
.ws19{word-spacing:-17.069760px;}
.ws24{word-spacing:-16.898520px;}
.wsf{word-spacing:-16.798320px;}
.ws10{word-spacing:-16.794720px;}
.ws17{word-spacing:-16.756320px;}
.wsa{word-spacing:-16.680120px;}
.ws16{word-spacing:-16.626120px;}
.ws22{word-spacing:-16.398720px;}
.ws2c{word-spacing:-16.290720px;}
.ws0{word-spacing:-14.616000px;}
.ws21{word-spacing:-14.400000px;}
.ws13{word-spacing:-14.328000px;}
.ws18{word-spacing:-13.720560px;}
.ws25{word-spacing:-13.632360px;}
.ws1c{word-spacing:-13.447440px;}
.ws12{word-spacing:-13.446720px;}
.ws1b{word-spacing:-13.354320px;}
.ws26{word-spacing:-13.204560px;}
.ws29{word-spacing:-12.643080px;}
.ws2b{word-spacing:-12.186000px;}
.ws28{word-spacing:-12.179280px;}
.ws1{word-spacing:-11.934000px;}
.ws2a{word-spacing:-11.923080px;}
.ws27{word-spacing:-11.773440px;}
.ws15{word-spacing:-10.425600px;}
.ws1e{word-spacing:-9.567360px;}
.ws4{word-spacing:0.000000px;}
._1b{margin-left:-18.954720px;}
._17{margin-left:-16.506240px;}
._1a{margin-left:-15.494400px;}
._19{margin-left:-14.380560px;}
._18{margin-left:-11.290800px;}
._15{margin-left:-9.723120px;}
._16{margin-left:-7.680240px;}
._e{margin-left:-4.450800px;}
._3{margin-left:-3.437280px;}
._1f{margin-left:-2.317200px;}
._2{margin-left:-1.142160px;}
._0{width:1.080000px;}
._4{width:2.611440px;}
._c{width:4.548960px;}
._b{width:6.436560px;}
._9{width:8.062560px;}
._a{width:9.095760px;}
._1d{width:10.098720px;}
._1c{width:11.476080px;}
._13{width:12.598800px;}
._5{width:13.899600px;}
._6{width:15.839040px;}
._20{width:18.263280px;}
._31{width:19.712160px;}
._2b{width:20.723040px;}
._10{width:22.033680px;}
._2a{width:23.197440px;}
._23{width:24.429600px;}
._32{width:25.451520px;}
._1e{width:26.582640px;}
._d{width:28.320960px;}
._7{width:29.568240px;}
._8{width:30.588960px;}
._25{width:31.758480px;}
._26{width:33.486000px;}
._36{width:34.894800px;}
._14{width:36.017520px;}
._37{width:37.087440px;}
._33{width:38.834640px;}
._34{width:40.504800px;}
._27{width:41.745840px;}
._35{width:51.976080px;}
._f{width:58.631040px;}
._2c{width:66.445680px;}
._11{width:67.974960px;}
._12{width:69.376560px;}
._2d{width:70.430160px;}
._22{width:71.688240px;}
._21{width:72.914640px;}
._24{width:81.881280px;}
._38{width:86.093280px;}
._29{width:87.188400px;}
._30{width:108.586560px;}
._2f{width:109.643280px;}
._28{width:142.197120px;}
._2e{width:169.069680px;}
._1{width:845.141760px;}
.fc6{color:rgb(15,13,41);}
.fc4{color:transparent;}
.fc7{color:rgb(255,0,0);}
.fc3{color:rgb(52,171,162);}
.fc2{color:rgb(53,146,207);}
.fc8{color:rgb(255,255,255);}
.fc1{color:rgb(0,0,0);}
.fc5{color:rgb(39,128,121);}
.fc0{color:rgb(8,42,117);}
.fsd{font-size:2.880000px;}
.fs4{font-size:30.240000px;}
.fsc{font-size:33.120000px;}
.fsb{font-size:36.000000px;}
.fsa{font-size:51.120000px;}
.fs2{font-size:54.000000px;}
.fs8{font-size:59.760000px;}
.fs9{font-size:66.240000px;}
.fs1{font-size:72.000000px;}
.fs0{font-size:84.240000px;}
.fs3{font-size:95.760000px;}
.fs7{font-size:108.000000px;}
.fse{font-size:120.240000px;}
.fs6{font-size:156.240000px;}
.fs5{font-size:216.000000px;}
.y0{bottom:0.000000px;}
.y7{bottom:1.079955px;}
.y1a{bottom:3.240000px;}
.y13f{bottom:4.140000px;}
.y244{bottom:4.215000px;}
.y147{bottom:5.940000px;}
.y142{bottom:6.120000px;}
.y1c2{bottom:7.020000px;}
.y1c4{bottom:7.200000px;}
.y91{bottom:7.740000px;}
.y8f{bottom:8.100000px;}
.y143{bottom:8.820000px;}
.y6{bottom:9.180000px;}
.yd7{bottom:13.500000px;}
.ycf{bottom:13.680000px;}
.y152{bottom:14.040000px;}
.y1a0{bottom:14.085000px;}
.y196{bottom:14.220000px;}
.y1e6{bottom:18.540000px;}
.y21e{bottom:18.720000px;}
.yca{bottom:18.900000px;}
.y167{bottom:18.945000px;}
.y22{bottom:19.830000px;}
.y19{bottom:20.160000px;}
.y23c{bottom:21.600000px;}
.y1bf{bottom:22.680000px;}
.y146{bottom:26.820000px;}
.y149{bottom:27.000000px;}
.y141{bottom:29.880000px;}
.y3{bottom:30.060000px;}
.y19a{bottom:32.040000px;}
.yd6{bottom:33.690000px;}
.yd2{bottom:33.840000px;}
.y151{bottom:36.000000px;}
.y154{bottom:36.030000px;}
.y5{bottom:37.620000px;}
.y18{bottom:49.674000px;}
.yd5{bottom:53.850000px;}
.yd1{bottom:54.000000px;}
.y8{bottom:56.340045px;}
.y20{bottom:56.520000px;}
.y19e{bottom:72.000000px;}
.y21d{bottom:75.636000px;}
.y13b{bottom:77.796000px;}
.y10a{bottom:78.156000px;}
.y17{bottom:79.194000px;}
.y229{bottom:80.316000px;}
.y194{bottom:80.496000px;}
.y165{bottom:80.856000px;}
.yc8{bottom:81.756000px;}
.y13a{bottom:82.296000px;}
.y192{bottom:83.016000px;}
.ya9{bottom:83.196000px;}
.y109{bottom:83.376000px;}
.yc1{bottom:83.736000px;}
.y1b2{bottom:91.656000px;}
.y8d{bottom:91.836000px;}
.y6c{bottom:92.016000px;}
.yd{bottom:92.340000px;}
.y1e5{bottom:93.456000px;}
.y19d{bottom:94.005000px;}
.y139{bottom:94.356000px;}
.y1de{bottom:96.156000px;}
.y129{bottom:96.336000px;}
.ydc{bottom:96.876000px;}
.y138{bottom:98.856000px;}
.y15d{bottom:99.936000px;}
.y108{bottom:101.736000px;}
.y17a{bottom:105.876000px;}
.y193{bottom:107.676000px;}
.y16{bottom:108.534000px;}
.y1bd{bottom:109.836000px;}
.y11b{bottom:110.196000px;}
.y164{bottom:110.376000px;}
.y137{bottom:110.916000px;}
.y1f1{bottom:111.096000px;}
.yc7{bottom:111.276000px;}
.ya8{bottom:112.536000px;}
.y40{bottom:113.976000px;}
.ydb{bottom:114.876000px;}
.y10{bottom:115.056000px;}
.y136{bottom:115.416000px;}
.y8e{bottom:119.736000px;}
.y20f{bottom:120.276000px;}
.y1b1{bottom:121.176000px;}
.y6b{bottom:121.536000px;}
.yc{bottom:121.860000px;}
.yc0{bottom:122.256000px;}
.y1f{bottom:122.580000px;}
.y128{bottom:125.676000px;}
.y15c{bottom:129.456000px;}
.y8c{bottom:130.356000px;}
.y107{bottom:131.256000px;}
.y59{bottom:132.876000px;}
.y15{bottom:138.054000px;}
.yfa{bottom:138.276000px;}
.y163{bottom:139.896000px;}
.yc6{bottom:140.796000px;}
.ya7{bottom:142.056000px;}
.y179{bottom:144.216000px;}
.y1bc{bottom:148.356000px;}
.y11a{bottom:148.716000px;}
.y1f0{bottom:149.616000px;}
.y1b0{bottom:150.690000px;}
.y191{bottom:150.870000px;}
.y3f{bottom:151.950000px;}
.y21c{bottom:153.390000px;}
.y1dd{bottom:155.010000px;}
.y127{bottom:155.190000px;}
.y20e{bottom:158.790000px;}
.y8b{bottom:159.690000px;}
.y6a{bottom:159.870000px;}
.ybf{bottom:160.770000px;}
.y14{bottom:161.274000px;}
.y135{bottom:162.390000px;}
.y228{bottom:163.110000px;}
.yf9{bottom:167.790000px;}
.y162{bottom:169.230000px;}
.y58{bottom:169.590000px;}
.yc5{bottom:170.310000px;}
.ya6{bottom:171.570000px;}
.y13{bottom:171.714000px;}
.y178{bottom:173.730000px;}
.y23b{bottom:175.710000px;}
.y1bb{bottom:177.870000px;}
.y119{bottom:178.230000px;}
.y1ef{bottom:179.130000px;}
.y1af{bottom:180.210000px;}
.y12{bottom:180.354000px;}
.y190{bottom:180.390000px;}
.y1dc{bottom:184.530000px;}
.y126{bottom:184.710000px;}
.y20d{bottom:188.310000px;}
.y1e{bottom:188.505000px;}
.y8a{bottom:189.210000px;}
.y69{bottom:189.390000px;}
.y3e{bottom:189.750000px;}
.y21b{bottom:191.910000px;}
.y227{bottom:193.350000px;}
.y106{bottom:196.950000px;}
.yf8{bottom:197.310000px;}
.y161{bottom:198.750000px;}
.ybe{bottom:199.110000px;}
.yc4{bottom:199.650000px;}
.y11{bottom:200.334000px;}
.ya5{bottom:201.090000px;}
.y177{bottom:203.250000px;}
.y57{bottom:206.670000px;}
.y1ba{bottom:207.390000px;}
.y118{bottom:207.750000px;}
.y1ee{bottom:208.470000px;}
.y1ae{bottom:209.550000px;}
.y18f{bottom:209.910000px;}
.y1db{bottom:214.050000px;}
.y125{bottom:214.230000px;}
.y20c{bottom:217.650000px;}
.y89{bottom:218.730000px;}
.y68{bottom:218.910000px;}
.y226{bottom:223.590000px;}
.y134{bottom:226.290000px;}
.y105{bottom:226.470000px;}
.yf7{bottom:226.650000px;}
.y160{bottom:228.270000px;}
.y21a{bottom:230.430000px;}
.ya4{bottom:230.610000px;}
.y176{bottom:232.770000px;}
.y3d{bottom:234.390000px;}
.yc3{bottom:236.010000px;}
.y1b9{bottom:236.730000px;}
.y117{bottom:237.090000px;}
.ybd{bottom:237.630000px;}
.y1ed{bottom:237.990000px;}
.y1ad{bottom:239.070000px;}
.y18e{bottom:239.430000px;}
.y56{bottom:243.570000px;}
.y20b{bottom:247.170000px;}
.y88{bottom:248.250000px;}
.y67{bottom:248.430000px;}
.y23a{bottom:252.570000px;}
.y225{bottom:253.830000px;}
.y1d{bottom:254.385000px;}
.y104{bottom:255.810000px;}
.yf6{bottom:256.170000px;}
.y15f{bottom:257.790000px;}
.ya3{bottom:259.950000px;}
.y175{bottom:262.110000px;}
.y3c{bottom:263.910000px;}
.yc9{bottom:264.810000px;}
.y1b8{bottom:266.250000px;}
.y116{bottom:266.610000px;}
.y1ec{bottom:267.510000px;}
.y219{bottom:268.770000px;}
.y18d{bottom:268.950000px;}
.y1da{bottom:272.910000px;}
.ybc{bottom:276.150000px;}
.y20a{bottom:276.690000px;}
.y87{bottom:277.590000px;}
.y133{bottom:277.770000px;}
.y66{bottom:277.950000px;}
.y55{bottom:280.650000px;}
.y124{bottom:282.090000px;}
.y224{bottom:284.070000px;}
.y15b{bottom:284.610000px;}
.y103{bottom:285.330000px;}
.yf5{bottom:285.690000px;}
.y15e{bottom:287.310000px;}
.ya2{bottom:289.470000px;}
.y239{bottom:291.090000px;}
.y174{bottom:291.630000px;}
.y3b{bottom:293.430000px;}
.y1b7{bottom:295.770000px;}
.y115{bottom:296.130000px;}
.y1eb{bottom:297.030000px;}
.y18c{bottom:298.290000px;}
.y1d9{bottom:302.430000px;}
.y209{bottom:306.210000px;}
.y86{bottom:307.110000px;}
.y132{bottom:307.290000px;}
.y166{bottom:307.470000px;}
.yc2{bottom:311.250000px;}
.y123{bottom:311.610000px;}
.y223{bottom:314.130000px;}
.ybb{bottom:314.670000px;}
.y102{bottom:314.850000px;}
.y65{bottom:316.290000px;}
.y54{bottom:317.595000px;}
.ya1{bottom:319.035000px;}
.y1c{bottom:320.265000px;}
.y173{bottom:321.195000px;}
.y3a{bottom:322.815000px;}
.y238{bottom:323.715000px;}
.yf4{bottom:324.255000px;}
.y1b6{bottom:325.335000px;}
.y114{bottom:325.695000px;}
.y1ea{bottom:326.415000px;}
.y18b{bottom:327.855000px;}
.y15a{bottom:331.635000px;}
.y208{bottom:335.595000px;}
.y1ac{bottom:336.495000px;}
.y85{bottom:336.675000px;}
.y131{bottom:336.855000px;}
.ye{bottom:338.295000px;}
.y1d8{bottom:340.995000px;}
.y122{bottom:341.175000px;}
.y243{bottom:342.180000px;}
.y100{bottom:344.415000px;}
.y64{bottom:345.855000px;}
.ya0{bottom:348.555000px;}
.y172{bottom:350.715000px;}
.y101{bottom:351.975000px;}
.yba{bottom:353.235000px;}
.yf3{bottom:353.595000px;}
.y53{bottom:354.675000px;}
.y1b5{bottom:354.855000px;}
.y113{bottom:355.215000px;}
.y1e9{bottom:355.935000px;}
.y159{bottom:361.155000px;}
.y39{bottom:361.335000px;}
.y1ab{bottom:366.015000px;}
.y84{bottom:366.195000px;}
.y18a{bottom:366.375000px;}
.y1d7{bottom:370.515000px;}
.y121{bottom:370.695000px;}
.yff{bottom:373.935000px;}
.y207{bottom:374.115000px;}
.y222{bottom:374.655000px;}
.y63{bottom:375.375000px;}
.y237{bottom:377.895000px;}
.y171{bottom:380.235000px;}
.yf2{bottom:383.115000px;}
.y1b4{bottom:384.195000px;}
.y218{bottom:384.375000px;}
.y112{bottom:384.555000px;}
.y1e8{bottom:385.455000px;}
.y9f{bottom:387.255000px;}
.y158{bottom:390.675000px;}
.y38{bottom:390.855000px;}
.y52{bottom:391.575000px;}
.y1aa{bottom:395.535000px;}
.y130{bottom:395.715000px;}
.y189{bottom:395.895000px;}
.y120{bottom:400.035000px;}
.yfe{bottom:403.275000px;}
.y206{bottom:403.635000px;}
.y83{bottom:404.715000px;}
.y62{bottom:404.895000px;}
.y170{bottom:409.575000px;}
.yf1{bottom:412.635000px;}
.y1b3{bottom:413.715000px;}
.y111{bottom:414.075000px;}
.y9e{bottom:414.435000px;}
.y1e7{bottom:414.975000px;}
.y236{bottom:416.415000px;}
.y157{bottom:420.195000px;}
.y37{bottom:420.375000px;}
.y217{bottom:422.715000px;}
.y1a9{bottom:425.055000px;}
.y12f{bottom:425.235000px;}
.y51{bottom:428.475000px;}
.y1d6{bottom:429.375000px;}
.y11f{bottom:429.555000px;}
.yb9{bottom:430.095000px;}
.yfd{bottom:432.795000px;}
.y205{bottom:433.155000px;}
.y1be{bottom:433.515000px;}
.y82{bottom:434.055000px;}
.y61{bottom:434.235000px;}
.y1f2{bottom:434.775000px;}
.y221{bottom:435.135000px;}
.y16f{bottom:439.095000px;}
.yf0{bottom:442.155000px;}
.y110{bottom:443.595000px;}
.y36{bottom:449.715000px;}
.y1a8{bottom:454.575000px;}
.y12e{bottom:454.755000px;}
.y235{bottom:454.935000px;}
.yda{bottom:455.835000px;}
.y1d5{bottom:458.895000px;}
.y216{bottom:461.235000px;}
.y204{bottom:462.675000px;}
.y81{bottom:463.575000px;}
.y60{bottom:463.755000px;}
.y220{bottom:465.375000px;}
.y50{bottom:465.555000px;}
.y11e{bottom:465.915000px;}
.yb8{bottom:468.615000px;}
.yd9{bottom:470.595000px;}
.yfc{bottom:471.495000px;}
.yef{bottom:471.675000px;}
.y10f{bottom:473.115000px;}
.y13c{bottom:477.255000px;}
.y156{bottom:479.055000px;}
.y35{bottom:479.235000px;}
.y1a7{bottom:483.915000px;}
.y188{bottom:484.275000px;}
.y1d4{bottom:488.415000px;}
.y203{bottom:492.015000px;}
.y80{bottom:493.095000px;}
.y5f{bottom:493.275000px;}
.y234{bottom:493.455000px;}
.yb7{bottom:498.135000px;}
.yfb{bottom:498.675000px;}
.y215{bottom:499.755000px;}
.yee{bottom:501.015000px;}
.y4f{bottom:502.455000px;}
.y21f{bottom:503.535000px;}
.y16e{bottom:507.135000px;}
.y155{bottom:508.575000px;}
.y34{bottom:508.755000px;}
.yd8{bottom:509.115000px;}
.y11d{bottom:510.195000px;}
.y1a6{bottom:513.435000px;}
.y187{bottom:513.795000px;}
.y1d3{bottom:517.935000px;}
.y202{bottom:521.535000px;}
.y7f{bottom:522.615000px;}
.y5e{bottom:522.795000px;}
.yb6{bottom:527.475000px;}
.yed{bottom:530.535000px;}
.y233{bottom:531.795000px;}
.y10e{bottom:531.975000px;}
.y16d{bottom:536.475000px;}
.y11c{bottom:537.555000px;}
.y153{bottom:538.095000px;}
.y33{bottom:538.275000px;}
.y4e{bottom:539.535000px;}
.y1a5{bottom:542.955000px;}
.y186{bottom:543.315000px;}
.y1d2{bottom:547.275000px;}
.yd4{bottom:547.635000px;}
.y21{bottom:549.075000px;}
.y7e{bottom:551.955000px;}
.y5d{bottom:552.315000px;}
.yf{bottom:552.675000px;}
.yb5{bottom:556.995000px;}
.y201{bottom:560.055000px;}
.y16c{bottom:565.995000px;}
.yec{bottom:569.085000px;}
.y10d{bottom:570.705000px;}
.y4d{bottom:576.465000px;}
.y32{bottom:576.825000px;}
.y7d{bottom:581.505000px;}
.y185{bottom:581.685000px;}
.yb4{bottom:586.545000px;}
.y5c{bottom:588.525000px;}
.y10c{bottom:589.065000px;}
.y200{bottom:589.605000px;}
.y242{bottom:592.665000px;}
.y90{bottom:595.365000px;}
.y16b{bottom:595.545000px;}
.yeb{bottom:598.605000px;}
.y150{bottom:602.385000px;}
.y31{bottom:606.165000px;}
.y1d1{bottom:606.345000px;}
.y1a4{bottom:610.845000px;}
.y7c{bottom:611.025000px;}
.y184{bottom:611.205000px;}
.y4c{bottom:613.545000px;}
.yb3{bottom:616.065000px;}
.y10b{bottom:616.245000px;}
.y1ff{bottom:618.945000px;}
.y232{bottom:623.265000px;}
.y16a{bottom:625.065000px;}
.yd3{bottom:626.325000px;}
.yea{bottom:627.945000px;}
.y30{bottom:635.685000px;}
.y1d0{bottom:635.865000px;}
.y1a3{bottom:640.365000px;}
.y7b{bottom:640.545000px;}
.y183{bottom:640.725000px;}
.y241{bottom:644.325000px;}
.yb2{bottom:645.585000px;}
.y1fe{bottom:648.465000px;}
.y4b{bottom:650.445000px;}
.y169{bottom:654.585000px;}
.ye9{bottom:657.465000px;}
.y1cf{bottom:659.085000px;}
.y2f{bottom:665.205000px;}
.y1a2{bottom:669.885000px;}
.y7a{bottom:670.065000px;}
.y182{bottom:670.245000px;}
.y1b{bottom:672.765000px;}
.y9d{bottom:674.025000px;}
.yb1{bottom:674.925000px;}
.y1fd{bottom:677.985000px;}
.y1ce{bottom:682.305000px;}
.y14f{bottom:683.925000px;}
.yd0{bottom:685.005000px;}
.ye8{bottom:686.985000px;}
.y4a{bottom:687.525000px;}
.y2e{bottom:694.725000px;}
.y240{bottom:695.805000px;}
.y79{bottom:699.405000px;}
.y181{bottom:699.585000px;}
.y9c{bottom:703.545000px;}
.yb0{bottom:704.445000px;}
.y1cd{bottom:705.705000px;}
.y1fc{bottom:707.505000px;}
.y168{bottom:713.445000px;}
.ye7{bottom:716.505000px;}
.y14e{bottom:717.045000px;}
.y2d{bottom:724.065000px;}
.y49{bottom:724.425000px;}
.y19c{bottom:728.205000px;}
.y78{bottom:728.925000px;}
.y180{bottom:729.105000px;}
.y9b{bottom:732.885000px;}
.y1e4{bottom:733.965000px;}
.y1fb{bottom:737.025000px;}
.y1f3{bottom:738.105000px;}
.yaf{bottom:742.965000px;}
.y14d{bottom:746.565000px;}
.y231{bottom:748.005000px;}
.y23f{bottom:749.985000px;}
.y1cc{bottom:752.145000px;}
.y2c{bottom:753.585000px;}
.ye6{bottom:755.025000px;}
.y77{bottom:758.445000px;}
.y48{bottom:761.325000px;}
.y9a{bottom:762.405000px;}
.y1e3{bottom:763.485000px;}
.yce{bottom:765.645000px;}
.y1fa{bottom:766.365000px;}
.y17f{bottom:767.625000px;}
.y1a1{bottom:768.165000px;}
.yae{bottom:772.485000px;}
.y1cb{bottom:775.365000px;}
.y14c{bottom:776.085000px;}
.y2b{bottom:783.105000px;}
.ye5{bottom:784.365000px;}
.y230{bottom:786.345000px;}
.y76{bottom:787.965000px;}
.y99{bottom:791.925000px;}
.y5b{bottom:792.105000px;}
.y1e2{bottom:792.825000px;}
.y17e{bottom:797.145000px;}
.y23e{bottom:797.910000px;}
.y47{bottom:798.405000px;}
.y1ca{bottom:798.585000px;}
.yad{bottom:801.825000px;}
.y1f9{bottom:804.885000px;}
.y14b{bottom:805.425000px;}
.y19f{bottom:808.125000px;}
.y2a{bottom:812.625000px;}
.ye4{bottom:813.885000px;}
.y75{bottom:817.305000px;}
.y98{bottom:821.490000px;}
.y5a{bottom:821.670000px;}
.y1c9{bottom:821.850000px;}
.y1e1{bottom:822.390000px;}
.ycd{bottom:822.750000px;}
.y22f{bottom:824.910000px;}
.y17d{bottom:826.710000px;}
.yac{bottom:831.390000px;}
.y1f8{bottom:834.450000px;}
.y14a{bottom:834.990000px;}
.y46{bottom:835.350000px;}
.ye3{bottom:843.450000px;}
.y1c8{bottom:845.250000px;}
.y23d{bottom:845.430000px;}
.y74{bottom:846.870000px;}
.y199{bottom:848.130000px;}
.y29{bottom:851.190000px;}
.y214{bottom:855.330000px;}
.ycc{bottom:855.870000px;}
.y17c{bottom:856.050000px;}
.y97{bottom:857.670000px;}
.yab{bottom:860.910000px;}
.y22e{bottom:863.430000px;}
.y1f7{bottom:863.970000px;}
.y148{bottom:864.150000px;}
.y1c7{bottom:868.470000px;}
.y45{bottom:872.430000px;}
.ye2{bottom:872.970000px;}
.y73{bottom:876.390000px;}
.y28{bottom:880.530000px;}
.y213{bottom:884.850000px;}
.ycb{bottom:885.390000px;}
.y19b{bottom:888.090000px;}
.y1e0{bottom:890.430000px;}
.y1c6{bottom:891.690000px;}
.y17b{bottom:892.410000px;}
.y1f6{bottom:893.310000px;}
.yaa{bottom:897.270000px;}
.y22d{bottom:901.950000px;}
.ye1{bottom:902.310000px;}
.y96{bottom:904.830000px;}
.y12d{bottom:905.910000px;}
.y145{bottom:908.430000px;}
.y44{bottom:909.330000px;}
.y27{bottom:910.050000px;}
.yb{bottom:911.130000px;}
.y212{bottom:914.370000px;}
.y72{bottom:914.910000px;}
.y1f5{bottom:922.830000px;}
.y1df{bottom:926.790000px;}
.y197{bottom:928.050000px;}
.ye0{bottom:931.830000px;}
.y12c{bottom:935.430000px;}
.y1c5{bottom:938.130000px;}
.y26{bottom:939.570000px;}
.y22c{bottom:940.470000px;}
.y95{bottom:943.350000px;}
.y211{bottom:943.710000px;}
.y71{bottom:944.430000px;}
.y43{bottom:946.410000px;}
.y1f4{bottom:952.350000px;}
.y144{bottom:952.530000px;}
.ydf{bottom:961.350000px;}
.y12b{bottom:964.770000px;}
.y198{bottom:968.010000px;}
.y25{bottom:969.090000px;}
.y70{bottom:973.770000px;}
.y140{bottom:978.810000px;}
.y42{bottom:980.430000px;}
.y94{bottom:981.870000px;}
.y1c3{bottom:984.750000px;}
.y210{bottom:990.690000px;}
.yde{bottom:990.870000px;}
.y12a{bottom:994.290000px;}
.y24{bottom:998.430000px;}
.y6f{bottom:1003.290000px;}
.y1c1{bottom:1007.970000px;}
.y195{bottom:1008.690000px;}
.y93{bottom:1020.390000px;}
.y22b{bottom:1023.630000px;}
.y13e{bottom:1027.770000px;}
.ya{bottom:1032.630000px;}
.y6e{bottom:1032.810000px;}
.y23{bottom:1045.410000px;}
.y41{bottom:1045.590000px;}
.y1c0{bottom:1049.370000px;}
.y92{bottom:1056.570000px;}
.ydd{bottom:1056.750000px;}
.y9{bottom:1061.970000px;}
.y6d{bottom:1062.330000px;}
.y22a{bottom:1065.390000px;}
.y13d{bottom:1067.730000px;}
.y4{bottom:1091.340000px;}
.y2{bottom:1111.500000px;}
.y1{bottom:1167.840000px;}
.h3e{height:18.900000px;}
.h26{height:21.060000px;}
.h15{height:22.140000px;}
.h13{height:22.500000px;}
.h38{height:22.536000px;}
.h25{height:23.580000px;}
.h29{height:25.920000px;}
.h22{height:28.705078px;}
.h9{height:30.963516px;}
.h20{height:31.201172px;}
.h39{height:31.500000px;}
.h17{height:33.300000px;}
.h2f{height:33.336000px;}
.h36{height:37.080000px;}
.h18{height:38.160000px;}
.h33{height:39.960000px;}
.h35{height:39.996000px;}
.h30{height:40.140000px;}
.h2a{height:43.740000px;}
.h2b{height:43.920000px;}
.h1f{height:44.305664px;}
.h28{height:46.620000px;}
.h23{height:46.801758px;}
.h2{height:46.980000px;}
.h3a{height:47.520000px;}
.h16{height:48.029766px;}
.h3b{height:49.992188px;}
.h21{height:51.793945px;}
.h37{height:55.987031px;}
.h1b{height:57.410156px;}
.h27{height:57.507187px;}
.h1c{height:58.320000px;}
.h31{height:60.855469px;}
.h24{height:61.189805px;}
.h2c{height:61.920000px;}
.h2d{height:61.956000px;}
.h2e{height:62.402344px;}
.h3{height:62.507812px;}
.h19{height:65.884219px;}
.hd{height:70.596000px;}
.h10{height:73.010742px;}
.ha{height:73.134141px;}
.h1e{height:74.545664px;}
.h1d{height:78.336000px;}
.h1a{height:78.480000px;}
.h32{height:79.920000px;}
.h14{height:82.995117px;}
.h1{height:86.255508px;}
.h11{height:86.800781px;}
.h12{height:93.761719px;}
.h8{height:95.245664px;}
.h3d{height:104.388047px;}
.h34{height:119.916000px;}
.hf{height:135.641953px;}
.h5{height:142.011000px;}
.he{height:187.207031px;}
.hc{height:187.523438px;}
.h7{height:223.230000px;}
.hb{height:371.010000px;}
.h4{height:387.975000px;}
.h6{height:572.835000px;}
.h3c{height:1147.680000px;}
.h0{height:1188.000000px;}
.w2a{width:91.980000px;}
.w24{width:92.700000px;}
.w13{width:94.356000px;}
.wf{width:94.536000px;}
.w1c{width:97.020000px;}
.w27{width:104.616000px;}
.w21{width:105.516000px;}
.w1b{width:108.216000px;}
.w26{width:109.836000px;}
.w29{width:110.016000px;}
.w20{width:110.556000px;}
.w23{width:110.916000px;}
.w28{width:139.860000px;}
.w22{width:140.580000px;}
.w17{width:148.140000px;}
.w16{width:148.176000px;}
.w15{width:161.850000px;}
.w11{width:162.030000px;}
.w25{width:183.990000px;}
.w1f{width:184.350000px;}
.wb{width:197.310000px;}
.w8{width:197.490000px;}
.w12{width:211.890000px;}
.wd{width:258.150000px;}
.wa{width:258.330000px;}
.w2f{width:266.760000px;}
.w1d{width:269.715000px;}
.w1a{width:270.030000px;}
.w19{width:270.075000px;}
.w14{width:276.510000px;}
.w10{width:276.870000px;}
.wc{width:288.975000px;}
.w9{width:289.155000px;}
.w2d{width:296.670000px;}
.w4{width:416.265000px;}
.w3{width:418.605000px;}
.w6{width:420.585000px;}
.w5{width:442.875000px;}
.w2e{width:541.545000px;}
.w18{width:584.205000px;}
.w2c{width:612.465000px;}
.w7{width:698.325000px;}
.we{width:740.490000px;}
.w1e{width:745.350000px;}
.w2b{width:745.710000px;}
.w2{width:917.999972px;}
.w1{width:917.999986px;}
.w0{width:918.000000px;}
.x5f{left:-1.044000px;}
.x0{left:0.000000px;}
.x2{left:6.839972px;}
.x15{left:8.136000px;}
.x7{left:10.836000px;}
.x58{left:27.540000px;}
.x56{left:36.396000px;}
.x50{left:38.340000px;}
.x4a{left:43.740000px;}
.x48{left:46.620000px;}
.x4e{left:52.065000px;}
.x55{left:53.676000px;}
.x4b{left:54.720000px;}
.x46{left:58.716000px;}
.x47{left:60.525000px;}
.x52{left:63.930000px;}
.x3e{left:65.550000px;}
.x4d{left:68.805000px;}
.x4c{left:70.230000px;}
.x49{left:73.620000px;}
.x54{left:76.350000px;}
.x4f{left:77.970000px;}
.xc{left:82.260000px;}
.x1{left:86.399986px;}
.x29{left:88.020000px;}
.xf{left:91.115986px;}
.x20{left:92.375986px;}
.x12{left:94.356000px;}
.xe{left:96.515986px;}
.xd{left:101.915986px;}
.x53{left:105.870000px;}
.x9{left:107.495986px;}
.x8{left:113.435986px;}
.x40{left:126.570000px;}
.x39{left:128.015986px;}
.x51{left:130.170000px;}
.x5b{left:140.435986px;}
.x2f{left:142.415986px;}
.x5e{left:147.600000px;}
.x3a{left:149.615986px;}
.x57{left:152.850000px;}
.x25{left:156.629973px;}
.x22{left:159.149986px;}
.x26{left:163.469986px;}
.x36{left:166.530000px;}
.x37{left:167.805000px;}
.x13{left:173.694000px;}
.x2c{left:180.930000px;}
.x1c{left:210.809986px;}
.x30{left:236.010000px;}
.x6{left:254.235000px;}
.x2a{left:255.495000px;}
.x41{left:271.110000px;}
.x16{left:283.890000px;}
.x3f{left:292.034986px;}
.x5a{left:294.914986px;}
.x1f{left:302.474986px;}
.x1a{left:307.514986px;}
.x14{left:317.414986px;}
.x3b{left:356.475000px;}
.x42{left:381.675000px;}
.x2b{left:383.834986px;}
.x31{left:384.915000px;}
.xb{left:397.875000px;}
.x21{left:418.214986px;}
.x23{left:435.314973px;}
.x24{left:442.154986px;}
.x1b{left:449.354986px;}
.x3{left:454.214986px;}
.x2d{left:457.815000px;}
.x18{left:459.074986px;}
.x43{left:487.185000px;}
.x1d{left:507.884973px;}
.xa{left:513.644986px;}
.x1e{left:514.724986px;}
.x5{left:519.584986px;}
.x32{left:533.805000px;}
.x59{left:544.605000px;}
.x17{left:573.045000px;}
.x5c{left:598.604986px;}
.x2e{left:619.845000px;}
.x3c{left:626.505000px;}
.x44{left:627.765000px;}
.x27{left:629.384973px;}
.x5d{left:634.064986px;}
.x28{left:636.224986px;}
.x33{left:682.890000px;}
.x19{left:705.389986px;}
.x10{left:716.729986px;}
.x3d{left:734.730000px;}
.x45{left:738.690000px;}
.x34{left:754.349973px;}
.x35{left:765.689986px;}
.x38{left:805.649986px;}
.x11{left:831.749986px;}
.x4{left:875.519972px;}
@media print{
.v2{vertical-align:-27.040000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:27.040000pt;}
.lsc{letter-spacing:-0.933333pt;}
.ls3a{letter-spacing:-0.869333pt;}
.ls26{letter-spacing:-0.720000pt;}
.ls2d{letter-spacing:-0.624000pt;}
.ls14{letter-spacing:-0.480533pt;}
.ls1d{letter-spacing:-0.421867pt;}
.ls35{letter-spacing:-0.412267pt;}
.lse{letter-spacing:-0.373867pt;}
.ls1e{letter-spacing:-0.306133pt;}
.lsd{letter-spacing:-0.295467pt;}
.ls16{letter-spacing:-0.272000pt;}
.ls13{letter-spacing:-0.268800pt;}
.ls3b{letter-spacing:-0.268267pt;}
.ls32{letter-spacing:-0.267733pt;}
.ls19{letter-spacing:-0.256000pt;}
.ls3{letter-spacing:-0.240000pt;}
.lsa{letter-spacing:-0.204267pt;}
.ls2c{letter-spacing:-0.192000pt;}
.ls33{letter-spacing:-0.184533pt;}
.ls2f{letter-spacing:-0.179733pt;}
.ls9{letter-spacing:-0.153067pt;}
.ls5{letter-spacing:-0.128000pt;}
.ls31{letter-spacing:-0.102933pt;}
.ls25{letter-spacing:-0.097067pt;}
.ls24{letter-spacing:-0.082133pt;}
.ls15{letter-spacing:-0.081067pt;}
.ls28{letter-spacing:-0.051840pt;}
.ls21{letter-spacing:-0.027520pt;}
.ls38{letter-spacing:-0.026240pt;}
.ls36{letter-spacing:-0.016000pt;}
.ls2{letter-spacing:0.000000pt;}
.ls2b{letter-spacing:0.013440pt;}
.ls22{letter-spacing:0.023680pt;}
.ls1b{letter-spacing:0.042880pt;}
.ls2e{letter-spacing:0.055467pt;}
.lsf{letter-spacing:0.088533pt;}
.ls1f{letter-spacing:0.112533pt;}
.ls6{letter-spacing:0.115200pt;}
.ls11{letter-spacing:0.133867pt;}
.ls27{letter-spacing:0.140800pt;}
.ls18{letter-spacing:0.159360pt;}
.ls30{letter-spacing:0.165867pt;}
.ls20{letter-spacing:0.190933pt;}
.lsb{letter-spacing:0.206080pt;}
.ls1a{letter-spacing:0.218133pt;}
.ls34{letter-spacing:0.227733pt;}
.ls39{letter-spacing:0.232533pt;}
.ls10{letter-spacing:0.266133pt;}
.ls2a{letter-spacing:0.333867pt;}
.ls1c{letter-spacing:0.341333pt;}
.ls23{letter-spacing:0.344320pt;}
.ls29{letter-spacing:0.494080pt;}
.ls17{letter-spacing:5.312000pt;}
.ls0{letter-spacing:5.493333pt;}
.ls4{letter-spacing:5.600000pt;}
.ls1{letter-spacing:5.644160pt;}
.ls37{letter-spacing:13.743360pt;}
.ls12{letter-spacing:75.183360pt;}
.ls7{letter-spacing:96.896000pt;}
.ls8{letter-spacing:114.794667pt;}
.wse{word-spacing:-53.120000pt;}
.ws3{word-spacing:-38.848000pt;}
.ws6{word-spacing:-28.192640pt;}
.ws2f{word-spacing:-27.924373pt;}
.ws2{word-spacing:-24.730453pt;}
.ws11{word-spacing:-19.488000pt;}
.ws8{word-spacing:-16.922880pt;}
.ws7{word-spacing:-16.769813pt;}
.ws9{word-spacing:-16.718613pt;}
.ws1f{word-spacing:-15.541973pt;}
.ws1d{word-spacing:-15.534507pt;}
.wsc{word-spacing:-15.466773pt;}
.ws2e{word-spacing:-15.433173pt;}
.ws14{word-spacing:-15.418773pt;}
.wsd{word-spacing:-15.334507pt;}
.wsb{word-spacing:-15.289173pt;}
.ws23{word-spacing:-15.256107pt;}
.ws1a{word-spacing:-15.224320pt;}
.ws20{word-spacing:-15.214080pt;}
.ws5{word-spacing:-15.200640pt;}
.ws2d{word-spacing:-15.174400pt;}
.ws19{word-spacing:-15.173120pt;}
.ws24{word-spacing:-15.020907pt;}
.wsf{word-spacing:-14.931840pt;}
.ws10{word-spacing:-14.928640pt;}
.ws17{word-spacing:-14.894507pt;}
.wsa{word-spacing:-14.826773pt;}
.ws16{word-spacing:-14.778773pt;}
.ws22{word-spacing:-14.576640pt;}
.ws2c{word-spacing:-14.480640pt;}
.ws0{word-spacing:-12.992000pt;}
.ws21{word-spacing:-12.800000pt;}
.ws13{word-spacing:-12.736000pt;}
.ws18{word-spacing:-12.196053pt;}
.ws25{word-spacing:-12.117653pt;}
.ws1c{word-spacing:-11.953280pt;}
.ws12{word-spacing:-11.952640pt;}
.ws1b{word-spacing:-11.870507pt;}
.ws26{word-spacing:-11.737387pt;}
.ws29{word-spacing:-11.238293pt;}
.ws2b{word-spacing:-10.832000pt;}
.ws28{word-spacing:-10.826027pt;}
.ws1{word-spacing:-10.608000pt;}
.ws2a{word-spacing:-10.598293pt;}
.ws27{word-spacing:-10.465280pt;}
.ws15{word-spacing:-9.267200pt;}
.ws1e{word-spacing:-8.504320pt;}
.ws4{word-spacing:0.000000pt;}
._1b{margin-left:-16.848640pt;}
._17{margin-left:-14.672213pt;}
._1a{margin-left:-13.772800pt;}
._19{margin-left:-12.782720pt;}
._18{margin-left:-10.036267pt;}
._15{margin-left:-8.642773pt;}
._16{margin-left:-6.826880pt;}
._e{margin-left:-3.956267pt;}
._3{margin-left:-3.055360pt;}
._1f{margin-left:-2.059733pt;}
._2{margin-left:-1.015253pt;}
._0{width:0.960000pt;}
._4{width:2.321280pt;}
._c{width:4.043520pt;}
._b{width:5.721387pt;}
._9{width:7.166720pt;}
._a{width:8.085120pt;}
._1d{width:8.976640pt;}
._1c{width:10.200960pt;}
._13{width:11.198933pt;}
._5{width:12.355200pt;}
._6{width:14.079147pt;}
._20{width:16.234027pt;}
._31{width:17.521920pt;}
._2b{width:18.420480pt;}
._10{width:19.585493pt;}
._2a{width:20.619947pt;}
._23{width:21.715200pt;}
._32{width:22.623573pt;}
._1e{width:23.629013pt;}
._d{width:25.174187pt;}
._7{width:26.282880pt;}
._8{width:27.190187pt;}
._25{width:28.229760pt;}
._26{width:29.765333pt;}
._36{width:31.017600pt;}
._14{width:32.015573pt;}
._37{width:32.966613pt;}
._33{width:34.519680pt;}
._34{width:36.004267pt;}
._27{width:37.107413pt;}
._35{width:46.200960pt;}
._f{width:52.116480pt;}
._2c{width:59.062827pt;}
._11{width:60.422187pt;}
._12{width:61.668053pt;}
._2d{width:62.604587pt;}
._22{width:63.722880pt;}
._21{width:64.813013pt;}
._24{width:72.783360pt;}
._38{width:76.527360pt;}
._29{width:77.500800pt;}
._30{width:96.521387pt;}
._2f{width:97.460693pt;}
._28{width:126.397440pt;}
._2e{width:150.284160pt;}
._1{width:751.237120pt;}
.fsd{font-size:2.560000pt;}
.fs4{font-size:26.880000pt;}
.fsc{font-size:29.440000pt;}
.fsb{font-size:32.000000pt;}
.fsa{font-size:45.440000pt;}
.fs2{font-size:48.000000pt;}
.fs8{font-size:53.120000pt;}
.fs9{font-size:58.880000pt;}
.fs1{font-size:64.000000pt;}
.fs0{font-size:74.880000pt;}
.fs3{font-size:85.120000pt;}
.fs7{font-size:96.000000pt;}
.fse{font-size:106.880000pt;}
.fs6{font-size:138.880000pt;}
.fs5{font-size:192.000000pt;}
.y0{bottom:0.000000pt;}
.y7{bottom:0.959960pt;}
.y1a{bottom:2.880000pt;}
.y13f{bottom:3.680000pt;}
.y244{bottom:3.746667pt;}
.y147{bottom:5.280000pt;}
.y142{bottom:5.440000pt;}
.y1c2{bottom:6.240000pt;}
.y1c4{bottom:6.400000pt;}
.y91{bottom:6.880000pt;}
.y8f{bottom:7.200000pt;}
.y143{bottom:7.840000pt;}
.y6{bottom:8.160000pt;}
.yd7{bottom:12.000000pt;}
.ycf{bottom:12.160000pt;}
.y152{bottom:12.480000pt;}
.y1a0{bottom:12.520000pt;}
.y196{bottom:12.640000pt;}
.y1e6{bottom:16.480000pt;}
.y21e{bottom:16.640000pt;}
.yca{bottom:16.800000pt;}
.y167{bottom:16.840000pt;}
.y22{bottom:17.626667pt;}
.y19{bottom:17.920000pt;}
.y23c{bottom:19.200000pt;}
.y1bf{bottom:20.160000pt;}
.y146{bottom:23.840000pt;}
.y149{bottom:24.000000pt;}
.y141{bottom:26.560000pt;}
.y3{bottom:26.720000pt;}
.y19a{bottom:28.480000pt;}
.yd6{bottom:29.946667pt;}
.yd2{bottom:30.080000pt;}
.y151{bottom:32.000000pt;}
.y154{bottom:32.026667pt;}
.y5{bottom:33.440000pt;}
.y18{bottom:44.154667pt;}
.yd5{bottom:47.866667pt;}
.yd1{bottom:48.000000pt;}
.y8{bottom:50.080040pt;}
.y20{bottom:50.240000pt;}
.y19e{bottom:64.000000pt;}
.y21d{bottom:67.232000pt;}
.y13b{bottom:69.152000pt;}
.y10a{bottom:69.472000pt;}
.y17{bottom:70.394667pt;}
.y229{bottom:71.392000pt;}
.y194{bottom:71.552000pt;}
.y165{bottom:71.872000pt;}
.yc8{bottom:72.672000pt;}
.y13a{bottom:73.152000pt;}
.y192{bottom:73.792000pt;}
.ya9{bottom:73.952000pt;}
.y109{bottom:74.112000pt;}
.yc1{bottom:74.432000pt;}
.y1b2{bottom:81.472000pt;}
.y8d{bottom:81.632000pt;}
.y6c{bottom:81.792000pt;}
.yd{bottom:82.080000pt;}
.y1e5{bottom:83.072000pt;}
.y19d{bottom:83.560000pt;}
.y139{bottom:83.872000pt;}
.y1de{bottom:85.472000pt;}
.y129{bottom:85.632000pt;}
.ydc{bottom:86.112000pt;}
.y138{bottom:87.872000pt;}
.y15d{bottom:88.832000pt;}
.y108{bottom:90.432000pt;}
.y17a{bottom:94.112000pt;}
.y193{bottom:95.712000pt;}
.y16{bottom:96.474667pt;}
.y1bd{bottom:97.632000pt;}
.y11b{bottom:97.952000pt;}
.y164{bottom:98.112000pt;}
.y137{bottom:98.592000pt;}
.y1f1{bottom:98.752000pt;}
.yc7{bottom:98.912000pt;}
.ya8{bottom:100.032000pt;}
.y40{bottom:101.312000pt;}
.ydb{bottom:102.112000pt;}
.y10{bottom:102.272000pt;}
.y136{bottom:102.592000pt;}
.y8e{bottom:106.432000pt;}
.y20f{bottom:106.912000pt;}
.y1b1{bottom:107.712000pt;}
.y6b{bottom:108.032000pt;}
.yc{bottom:108.320000pt;}
.yc0{bottom:108.672000pt;}
.y1f{bottom:108.960000pt;}
.y128{bottom:111.712000pt;}
.y15c{bottom:115.072000pt;}
.y8c{bottom:115.872000pt;}
.y107{bottom:116.672000pt;}
.y59{bottom:118.112000pt;}
.y15{bottom:122.714667pt;}
.yfa{bottom:122.912000pt;}
.y163{bottom:124.352000pt;}
.yc6{bottom:125.152000pt;}
.ya7{bottom:126.272000pt;}
.y179{bottom:128.192000pt;}
.y1bc{bottom:131.872000pt;}
.y11a{bottom:132.192000pt;}
.y1f0{bottom:132.992000pt;}
.y1b0{bottom:133.946667pt;}
.y191{bottom:134.106667pt;}
.y3f{bottom:135.066667pt;}
.y21c{bottom:136.346667pt;}
.y1dd{bottom:137.786667pt;}
.y127{bottom:137.946667pt;}
.y20e{bottom:141.146667pt;}
.y8b{bottom:141.946667pt;}
.y6a{bottom:142.106667pt;}
.ybf{bottom:142.906667pt;}
.y14{bottom:143.354667pt;}
.y135{bottom:144.346667pt;}
.y228{bottom:144.986667pt;}
.yf9{bottom:149.146667pt;}
.y162{bottom:150.426667pt;}
.y58{bottom:150.746667pt;}
.yc5{bottom:151.386667pt;}
.ya6{bottom:152.506667pt;}
.y13{bottom:152.634667pt;}
.y178{bottom:154.426667pt;}
.y23b{bottom:156.186667pt;}
.y1bb{bottom:158.106667pt;}
.y119{bottom:158.426667pt;}
.y1ef{bottom:159.226667pt;}
.y1af{bottom:160.186667pt;}
.y12{bottom:160.314667pt;}
.y190{bottom:160.346667pt;}
.y1dc{bottom:164.026667pt;}
.y126{bottom:164.186667pt;}
.y20d{bottom:167.386667pt;}
.y1e{bottom:167.560000pt;}
.y8a{bottom:168.186667pt;}
.y69{bottom:168.346667pt;}
.y3e{bottom:168.666667pt;}
.y21b{bottom:170.586667pt;}
.y227{bottom:171.866667pt;}
.y106{bottom:175.066667pt;}
.yf8{bottom:175.386667pt;}
.y161{bottom:176.666667pt;}
.ybe{bottom:176.986667pt;}
.yc4{bottom:177.466667pt;}
.y11{bottom:178.074667pt;}
.ya5{bottom:178.746667pt;}
.y177{bottom:180.666667pt;}
.y57{bottom:183.706667pt;}
.y1ba{bottom:184.346667pt;}
.y118{bottom:184.666667pt;}
.y1ee{bottom:185.306667pt;}
.y1ae{bottom:186.266667pt;}
.y18f{bottom:186.586667pt;}
.y1db{bottom:190.266667pt;}
.y125{bottom:190.426667pt;}
.y20c{bottom:193.466667pt;}
.y89{bottom:194.426667pt;}
.y68{bottom:194.586667pt;}
.y226{bottom:198.746667pt;}
.y134{bottom:201.146667pt;}
.y105{bottom:201.306667pt;}
.yf7{bottom:201.466667pt;}
.y160{bottom:202.906667pt;}
.y21a{bottom:204.826667pt;}
.ya4{bottom:204.986667pt;}
.y176{bottom:206.906667pt;}
.y3d{bottom:208.346667pt;}
.yc3{bottom:209.786667pt;}
.y1b9{bottom:210.426667pt;}
.y117{bottom:210.746667pt;}
.ybd{bottom:211.226667pt;}
.y1ed{bottom:211.546667pt;}
.y1ad{bottom:212.506667pt;}
.y18e{bottom:212.826667pt;}
.y56{bottom:216.506667pt;}
.y20b{bottom:219.706667pt;}
.y88{bottom:220.666667pt;}
.y67{bottom:220.826667pt;}
.y23a{bottom:224.506667pt;}
.y225{bottom:225.626667pt;}
.y1d{bottom:226.120000pt;}
.y104{bottom:227.386667pt;}
.yf6{bottom:227.706667pt;}
.y15f{bottom:229.146667pt;}
.ya3{bottom:231.066667pt;}
.y175{bottom:232.986667pt;}
.y3c{bottom:234.586667pt;}
.yc9{bottom:235.386667pt;}
.y1b8{bottom:236.666667pt;}
.y116{bottom:236.986667pt;}
.y1ec{bottom:237.786667pt;}
.y219{bottom:238.906667pt;}
.y18d{bottom:239.066667pt;}
.y1da{bottom:242.586667pt;}
.ybc{bottom:245.466667pt;}
.y20a{bottom:245.946667pt;}
.y87{bottom:246.746667pt;}
.y133{bottom:246.906667pt;}
.y66{bottom:247.066667pt;}
.y55{bottom:249.466667pt;}
.y124{bottom:250.746667pt;}
.y224{bottom:252.506667pt;}
.y15b{bottom:252.986667pt;}
.y103{bottom:253.626667pt;}
.yf5{bottom:253.946667pt;}
.y15e{bottom:255.386667pt;}
.ya2{bottom:257.306667pt;}
.y239{bottom:258.746667pt;}
.y174{bottom:259.226667pt;}
.y3b{bottom:260.826667pt;}
.y1b7{bottom:262.906667pt;}
.y115{bottom:263.226667pt;}
.y1eb{bottom:264.026667pt;}
.y18c{bottom:265.146667pt;}
.y1d9{bottom:268.826667pt;}
.y209{bottom:272.186667pt;}
.y86{bottom:272.986667pt;}
.y132{bottom:273.146667pt;}
.y166{bottom:273.306667pt;}
.yc2{bottom:276.666667pt;}
.y123{bottom:276.986667pt;}
.y223{bottom:279.226667pt;}
.ybb{bottom:279.706667pt;}
.y102{bottom:279.866667pt;}
.y65{bottom:281.146667pt;}
.y54{bottom:282.306667pt;}
.ya1{bottom:283.586667pt;}
.y1c{bottom:284.680000pt;}
.y173{bottom:285.506667pt;}
.y3a{bottom:286.946667pt;}
.y238{bottom:287.746667pt;}
.yf4{bottom:288.226667pt;}
.y1b6{bottom:289.186667pt;}
.y114{bottom:289.506667pt;}
.y1ea{bottom:290.146667pt;}
.y18b{bottom:291.426667pt;}
.y15a{bottom:294.786667pt;}
.y208{bottom:298.306667pt;}
.y1ac{bottom:299.106667pt;}
.y85{bottom:299.266667pt;}
.y131{bottom:299.426667pt;}
.ye{bottom:300.706667pt;}
.y1d8{bottom:303.106667pt;}
.y122{bottom:303.266667pt;}
.y243{bottom:304.160000pt;}
.y100{bottom:306.146667pt;}
.y64{bottom:307.426667pt;}
.ya0{bottom:309.826667pt;}
.y172{bottom:311.746667pt;}
.y101{bottom:312.866667pt;}
.yba{bottom:313.986667pt;}
.yf3{bottom:314.306667pt;}
.y53{bottom:315.266667pt;}
.y1b5{bottom:315.426667pt;}
.y113{bottom:315.746667pt;}
.y1e9{bottom:316.386667pt;}
.y159{bottom:321.026667pt;}
.y39{bottom:321.186667pt;}
.y1ab{bottom:325.346667pt;}
.y84{bottom:325.506667pt;}
.y18a{bottom:325.666667pt;}
.y1d7{bottom:329.346667pt;}
.y121{bottom:329.506667pt;}
.yff{bottom:332.386667pt;}
.y207{bottom:332.546667pt;}
.y222{bottom:333.026667pt;}
.y63{bottom:333.666667pt;}
.y237{bottom:335.906667pt;}
.y171{bottom:337.986667pt;}
.yf2{bottom:340.546667pt;}
.y1b4{bottom:341.506667pt;}
.y218{bottom:341.666667pt;}
.y112{bottom:341.826667pt;}
.y1e8{bottom:342.626667pt;}
.y9f{bottom:344.226667pt;}
.y158{bottom:347.266667pt;}
.y38{bottom:347.426667pt;}
.y52{bottom:348.066667pt;}
.y1aa{bottom:351.586667pt;}
.y130{bottom:351.746667pt;}
.y189{bottom:351.906667pt;}
.y120{bottom:355.586667pt;}
.yfe{bottom:358.466667pt;}
.y206{bottom:358.786667pt;}
.y83{bottom:359.746667pt;}
.y62{bottom:359.906667pt;}
.y170{bottom:364.066667pt;}
.yf1{bottom:366.786667pt;}
.y1b3{bottom:367.746667pt;}
.y111{bottom:368.066667pt;}
.y9e{bottom:368.386667pt;}
.y1e7{bottom:368.866667pt;}
.y236{bottom:370.146667pt;}
.y157{bottom:373.506667pt;}
.y37{bottom:373.666667pt;}
.y217{bottom:375.746667pt;}
.y1a9{bottom:377.826667pt;}
.y12f{bottom:377.986667pt;}
.y51{bottom:380.866667pt;}
.y1d6{bottom:381.666667pt;}
.y11f{bottom:381.826667pt;}
.yb9{bottom:382.306667pt;}
.yfd{bottom:384.706667pt;}
.y205{bottom:385.026667pt;}
.y1be{bottom:385.346667pt;}
.y82{bottom:385.826667pt;}
.y61{bottom:385.986667pt;}
.y1f2{bottom:386.466667pt;}
.y221{bottom:386.786667pt;}
.y16f{bottom:390.306667pt;}
.yf0{bottom:393.026667pt;}
.y110{bottom:394.306667pt;}
.y36{bottom:399.746667pt;}
.y1a8{bottom:404.066667pt;}
.y12e{bottom:404.226667pt;}
.y235{bottom:404.386667pt;}
.yda{bottom:405.186667pt;}
.y1d5{bottom:407.906667pt;}
.y216{bottom:409.986667pt;}
.y204{bottom:411.266667pt;}
.y81{bottom:412.066667pt;}
.y60{bottom:412.226667pt;}
.y220{bottom:413.666667pt;}
.y50{bottom:413.826667pt;}
.y11e{bottom:414.146667pt;}
.yb8{bottom:416.546667pt;}
.yd9{bottom:418.306667pt;}
.yfc{bottom:419.106667pt;}
.yef{bottom:419.266667pt;}
.y10f{bottom:420.546667pt;}
.y13c{bottom:424.226667pt;}
.y156{bottom:425.826667pt;}
.y35{bottom:425.986667pt;}
.y1a7{bottom:430.146667pt;}
.y188{bottom:430.466667pt;}
.y1d4{bottom:434.146667pt;}
.y203{bottom:437.346667pt;}
.y80{bottom:438.306667pt;}
.y5f{bottom:438.466667pt;}
.y234{bottom:438.626667pt;}
.yb7{bottom:442.786667pt;}
.yfb{bottom:443.266667pt;}
.y215{bottom:444.226667pt;}
.yee{bottom:445.346667pt;}
.y4f{bottom:446.626667pt;}
.y21f{bottom:447.586667pt;}
.y16e{bottom:450.786667pt;}
.y155{bottom:452.066667pt;}
.y34{bottom:452.226667pt;}
.yd8{bottom:452.546667pt;}
.y11d{bottom:453.506667pt;}
.y1a6{bottom:456.386667pt;}
.y187{bottom:456.706667pt;}
.y1d3{bottom:460.386667pt;}
.y202{bottom:463.586667pt;}
.y7f{bottom:464.546667pt;}
.y5e{bottom:464.706667pt;}
.yb6{bottom:468.866667pt;}
.yed{bottom:471.586667pt;}
.y233{bottom:472.706667pt;}
.y10e{bottom:472.866667pt;}
.y16d{bottom:476.866667pt;}
.y11c{bottom:477.826667pt;}
.y153{bottom:478.306667pt;}
.y33{bottom:478.466667pt;}
.y4e{bottom:479.586667pt;}
.y1a5{bottom:482.626667pt;}
.y186{bottom:482.946667pt;}
.y1d2{bottom:486.466667pt;}
.yd4{bottom:486.786667pt;}
.y21{bottom:488.066667pt;}
.y7e{bottom:490.626667pt;}
.y5d{bottom:490.946667pt;}
.yf{bottom:491.266667pt;}
.yb5{bottom:495.106667pt;}
.y201{bottom:497.826667pt;}
.y16c{bottom:503.106667pt;}
.yec{bottom:505.853333pt;}
.y10d{bottom:507.293333pt;}
.y4d{bottom:512.413333pt;}
.y32{bottom:512.733333pt;}
.y7d{bottom:516.893333pt;}
.y185{bottom:517.053333pt;}
.yb4{bottom:521.373333pt;}
.y5c{bottom:523.133333pt;}
.y10c{bottom:523.613333pt;}
.y200{bottom:524.093333pt;}
.y242{bottom:526.813333pt;}
.y90{bottom:529.213333pt;}
.y16b{bottom:529.373333pt;}
.yeb{bottom:532.093333pt;}
.y150{bottom:535.453333pt;}
.y31{bottom:538.813333pt;}
.y1d1{bottom:538.973333pt;}
.y1a4{bottom:542.973333pt;}
.y7c{bottom:543.133333pt;}
.y184{bottom:543.293333pt;}
.y4c{bottom:545.373333pt;}
.yb3{bottom:547.613333pt;}
.y10b{bottom:547.773333pt;}
.y1ff{bottom:550.173333pt;}
.y232{bottom:554.013333pt;}
.y16a{bottom:555.613333pt;}
.yd3{bottom:556.733333pt;}
.yea{bottom:558.173333pt;}
.y30{bottom:565.053333pt;}
.y1d0{bottom:565.213333pt;}
.y1a3{bottom:569.213333pt;}
.y7b{bottom:569.373333pt;}
.y183{bottom:569.533333pt;}
.y241{bottom:572.733333pt;}
.yb2{bottom:573.853333pt;}
.y1fe{bottom:576.413333pt;}
.y4b{bottom:578.173333pt;}
.y169{bottom:581.853333pt;}
.ye9{bottom:584.413333pt;}
.y1cf{bottom:585.853333pt;}
.y2f{bottom:591.293333pt;}
.y1a2{bottom:595.453333pt;}
.y7a{bottom:595.613333pt;}
.y182{bottom:595.773333pt;}
.y1b{bottom:598.013333pt;}
.y9d{bottom:599.133333pt;}
.yb1{bottom:599.933333pt;}
.y1fd{bottom:602.653333pt;}
.y1ce{bottom:606.493333pt;}
.y14f{bottom:607.933333pt;}
.yd0{bottom:608.893333pt;}
.ye8{bottom:610.653333pt;}
.y4a{bottom:611.133333pt;}
.y2e{bottom:617.533333pt;}
.y240{bottom:618.493333pt;}
.y79{bottom:621.693333pt;}
.y181{bottom:621.853333pt;}
.y9c{bottom:625.373333pt;}
.yb0{bottom:626.173333pt;}
.y1cd{bottom:627.293333pt;}
.y1fc{bottom:628.893333pt;}
.y168{bottom:634.173333pt;}
.ye7{bottom:636.893333pt;}
.y14e{bottom:637.373333pt;}
.y2d{bottom:643.613333pt;}
.y49{bottom:643.933333pt;}
.y19c{bottom:647.293333pt;}
.y78{bottom:647.933333pt;}
.y180{bottom:648.093333pt;}
.y9b{bottom:651.453333pt;}
.y1e4{bottom:652.413333pt;}
.y1fb{bottom:655.133333pt;}
.y1f3{bottom:656.093333pt;}
.yaf{bottom:660.413333pt;}
.y14d{bottom:663.613333pt;}
.y231{bottom:664.893333pt;}
.y23f{bottom:666.653333pt;}
.y1cc{bottom:668.573333pt;}
.y2c{bottom:669.853333pt;}
.ye6{bottom:671.133333pt;}
.y77{bottom:674.173333pt;}
.y48{bottom:676.733333pt;}
.y9a{bottom:677.693333pt;}
.y1e3{bottom:678.653333pt;}
.yce{bottom:680.573333pt;}
.y1fa{bottom:681.213333pt;}
.y17f{bottom:682.333333pt;}
.y1a1{bottom:682.813333pt;}
.yae{bottom:686.653333pt;}
.y1cb{bottom:689.213333pt;}
.y14c{bottom:689.853333pt;}
.y2b{bottom:696.093333pt;}
.ye5{bottom:697.213333pt;}
.y230{bottom:698.973333pt;}
.y76{bottom:700.413333pt;}
.y99{bottom:703.933333pt;}
.y5b{bottom:704.093333pt;}
.y1e2{bottom:704.733333pt;}
.y17e{bottom:708.573333pt;}
.y23e{bottom:709.253333pt;}
.y47{bottom:709.693333pt;}
.y1ca{bottom:709.853333pt;}
.yad{bottom:712.733333pt;}
.y1f9{bottom:715.453333pt;}
.y14b{bottom:715.933333pt;}
.y19f{bottom:718.333333pt;}
.y2a{bottom:722.333333pt;}
.ye4{bottom:723.453333pt;}
.y75{bottom:726.493333pt;}
.y98{bottom:730.213333pt;}
.y5a{bottom:730.373333pt;}
.y1c9{bottom:730.533333pt;}
.y1e1{bottom:731.013333pt;}
.ycd{bottom:731.333333pt;}
.y22f{bottom:733.253333pt;}
.y17d{bottom:734.853333pt;}
.yac{bottom:739.013333pt;}
.y1f8{bottom:741.733333pt;}
.y14a{bottom:742.213333pt;}
.y46{bottom:742.533333pt;}
.ye3{bottom:749.733333pt;}
.y1c8{bottom:751.333333pt;}
.y23d{bottom:751.493333pt;}
.y74{bottom:752.773333pt;}
.y199{bottom:753.893333pt;}
.y29{bottom:756.613333pt;}
.y214{bottom:760.293333pt;}
.ycc{bottom:760.773333pt;}
.y17c{bottom:760.933333pt;}
.y97{bottom:762.373333pt;}
.yab{bottom:765.253333pt;}
.y22e{bottom:767.493333pt;}
.y1f7{bottom:767.973333pt;}
.y148{bottom:768.133333pt;}
.y1c7{bottom:771.973333pt;}
.y45{bottom:775.493333pt;}
.ye2{bottom:775.973333pt;}
.y73{bottom:779.013333pt;}
.y28{bottom:782.693333pt;}
.y213{bottom:786.533333pt;}
.ycb{bottom:787.013333pt;}
.y19b{bottom:789.413333pt;}
.y1e0{bottom:791.493333pt;}
.y1c6{bottom:792.613333pt;}
.y17b{bottom:793.253333pt;}
.y1f6{bottom:794.053333pt;}
.yaa{bottom:797.573333pt;}
.y22d{bottom:801.733333pt;}
.ye1{bottom:802.053333pt;}
.y96{bottom:804.293333pt;}
.y12d{bottom:805.253333pt;}
.y145{bottom:807.493333pt;}
.y44{bottom:808.293333pt;}
.y27{bottom:808.933333pt;}
.yb{bottom:809.893333pt;}
.y212{bottom:812.773333pt;}
.y72{bottom:813.253333pt;}
.y1f5{bottom:820.293333pt;}
.y1df{bottom:823.813333pt;}
.y197{bottom:824.933333pt;}
.ye0{bottom:828.293333pt;}
.y12c{bottom:831.493333pt;}
.y1c5{bottom:833.893333pt;}
.y26{bottom:835.173333pt;}
.y22c{bottom:835.973333pt;}
.y95{bottom:838.533333pt;}
.y211{bottom:838.853333pt;}
.y71{bottom:839.493333pt;}
.y43{bottom:841.253333pt;}
.y1f4{bottom:846.533333pt;}
.y144{bottom:846.693333pt;}
.ydf{bottom:854.533333pt;}
.y12b{bottom:857.573333pt;}
.y198{bottom:860.453333pt;}
.y25{bottom:861.413333pt;}
.y70{bottom:865.573333pt;}
.y140{bottom:870.053333pt;}
.y42{bottom:871.493333pt;}
.y94{bottom:872.773333pt;}
.y1c3{bottom:875.333333pt;}
.y210{bottom:880.613333pt;}
.yde{bottom:880.773333pt;}
.y12a{bottom:883.813333pt;}
.y24{bottom:887.493333pt;}
.y6f{bottom:891.813333pt;}
.y1c1{bottom:895.973333pt;}
.y195{bottom:896.613333pt;}
.y93{bottom:907.013333pt;}
.y22b{bottom:909.893333pt;}
.y13e{bottom:913.573333pt;}
.ya{bottom:917.893333pt;}
.y6e{bottom:918.053333pt;}
.y23{bottom:929.253333pt;}
.y41{bottom:929.413333pt;}
.y1c0{bottom:932.773333pt;}
.y92{bottom:939.173333pt;}
.ydd{bottom:939.333333pt;}
.y9{bottom:943.973333pt;}
.y6d{bottom:944.293333pt;}
.y22a{bottom:947.013333pt;}
.y13d{bottom:949.093333pt;}
.y4{bottom:970.080000pt;}
.y2{bottom:988.000000pt;}
.y1{bottom:1038.080000pt;}
.h3e{height:16.800000pt;}
.h26{height:18.720000pt;}
.h15{height:19.680000pt;}
.h13{height:20.000000pt;}
.h38{height:20.032000pt;}
.h25{height:20.960000pt;}
.h29{height:23.040000pt;}
.h22{height:25.515625pt;}
.h9{height:27.523125pt;}
.h20{height:27.734375pt;}
.h39{height:28.000000pt;}
.h17{height:29.600000pt;}
.h2f{height:29.632000pt;}
.h36{height:32.960000pt;}
.h18{height:33.920000pt;}
.h33{height:35.520000pt;}
.h35{height:35.552000pt;}
.h30{height:35.680000pt;}
.h2a{height:38.880000pt;}
.h2b{height:39.040000pt;}
.h1f{height:39.382812pt;}
.h28{height:41.440000pt;}
.h23{height:41.601562pt;}
.h2{height:41.760000pt;}
.h3a{height:42.240000pt;}
.h16{height:42.693125pt;}
.h3b{height:44.437500pt;}
.h21{height:46.039063pt;}
.h37{height:49.766250pt;}
.h1b{height:51.031250pt;}
.h27{height:51.117500pt;}
.h1c{height:51.840000pt;}
.h31{height:54.093750pt;}
.h24{height:54.390938pt;}
.h2c{height:55.040000pt;}
.h2d{height:55.072000pt;}
.h2e{height:55.468750pt;}
.h3{height:55.562500pt;}
.h19{height:58.563750pt;}
.hd{height:62.752000pt;}
.h10{height:64.898438pt;}
.ha{height:65.008125pt;}
.h1e{height:66.262812pt;}
.h1d{height:69.632000pt;}
.h1a{height:69.760000pt;}
.h32{height:71.040000pt;}
.h14{height:73.773438pt;}
.h1{height:76.671562pt;}
.h11{height:77.156250pt;}
.h12{height:83.343750pt;}
.h8{height:84.662813pt;}
.h3d{height:92.789375pt;}
.h34{height:106.592000pt;}
.hf{height:120.570625pt;}
.h5{height:126.232000pt;}
.he{height:166.406250pt;}
.hc{height:166.687500pt;}
.h7{height:198.426667pt;}
.hb{height:329.786667pt;}
.h4{height:344.866667pt;}
.h6{height:509.186667pt;}
.h3c{height:1020.160000pt;}
.h0{height:1056.000000pt;}
.w2a{width:81.760000pt;}
.w24{width:82.400000pt;}
.w13{width:83.872000pt;}
.wf{width:84.032000pt;}
.w1c{width:86.240000pt;}
.w27{width:92.992000pt;}
.w21{width:93.792000pt;}
.w1b{width:96.192000pt;}
.w26{width:97.632000pt;}
.w29{width:97.792000pt;}
.w20{width:98.272000pt;}
.w23{width:98.592000pt;}
.w28{width:124.320000pt;}
.w22{width:124.960000pt;}
.w17{width:131.680000pt;}
.w16{width:131.712000pt;}
.w15{width:143.866667pt;}
.w11{width:144.026667pt;}
.w25{width:163.546667pt;}
.w1f{width:163.866667pt;}
.wb{width:175.386667pt;}
.w8{width:175.546667pt;}
.w12{width:188.346667pt;}
.wd{width:229.466667pt;}
.wa{width:229.626667pt;}
.w2f{width:237.120000pt;}
.w1d{width:239.746667pt;}
.w1a{width:240.026667pt;}
.w19{width:240.066667pt;}
.w14{width:245.786667pt;}
.w10{width:246.106667pt;}
.wc{width:256.866667pt;}
.w9{width:257.026667pt;}
.w2d{width:263.706667pt;}
.w4{width:370.013333pt;}
.w3{width:372.093333pt;}
.w6{width:373.853333pt;}
.w5{width:393.666667pt;}
.w2e{width:481.373333pt;}
.w18{width:519.293333pt;}
.w2c{width:544.413333pt;}
.w7{width:620.733333pt;}
.we{width:658.213333pt;}
.w1e{width:662.533333pt;}
.w2b{width:662.853333pt;}
.w2{width:815.999975pt;}
.w1{width:815.999988pt;}
.w0{width:816.000000pt;}
.x5f{left:-0.928000pt;}
.x0{left:0.000000pt;}
.x2{left:6.079975pt;}
.x15{left:7.232000pt;}
.x7{left:9.632000pt;}
.x58{left:24.480000pt;}
.x56{left:32.352000pt;}
.x50{left:34.080000pt;}
.x4a{left:38.880000pt;}
.x48{left:41.440000pt;}
.x4e{left:46.280000pt;}
.x55{left:47.712000pt;}
.x4b{left:48.640000pt;}
.x46{left:52.192000pt;}
.x47{left:53.800000pt;}
.x52{left:56.826667pt;}
.x3e{left:58.266667pt;}
.x4d{left:61.160000pt;}
.x4c{left:62.426667pt;}
.x49{left:65.440000pt;}
.x54{left:67.866667pt;}
.x4f{left:69.306667pt;}
.xc{left:73.120000pt;}
.x1{left:76.799988pt;}
.x29{left:78.240000pt;}
.xf{left:80.991988pt;}
.x20{left:82.111988pt;}
.x12{left:83.872000pt;}
.xe{left:85.791988pt;}
.xd{left:90.591988pt;}
.x53{left:94.106667pt;}
.x9{left:95.551988pt;}
.x8{left:100.831988pt;}
.x40{left:112.506667pt;}
.x39{left:113.791988pt;}
.x51{left:115.706667pt;}
.x5b{left:124.831988pt;}
.x2f{left:126.591988pt;}
.x5e{left:131.200000pt;}
.x3a{left:132.991988pt;}
.x57{left:135.866667pt;}
.x25{left:139.226642pt;}
.x22{left:141.466655pt;}
.x26{left:145.306655pt;}
.x36{left:148.026667pt;}
.x37{left:149.160000pt;}
.x13{left:154.394667pt;}
.x2c{left:160.826667pt;}
.x1c{left:187.386655pt;}
.x30{left:209.786667pt;}
.x6{left:225.986667pt;}
.x2a{left:227.106667pt;}
.x41{left:240.986667pt;}
.x16{left:252.346667pt;}
.x3f{left:259.586655pt;}
.x5a{left:262.146655pt;}
.x1f{left:268.866655pt;}
.x1a{left:273.346655pt;}
.x14{left:282.146655pt;}
.x3b{left:316.866667pt;}
.x42{left:339.266667pt;}
.x2b{left:341.186655pt;}
.x31{left:342.146667pt;}
.xb{left:353.666667pt;}
.x21{left:371.746655pt;}
.x23{left:386.946642pt;}
.x24{left:393.026655pt;}
.x1b{left:399.426655pt;}
.x3{left:403.746655pt;}
.x2d{left:406.946667pt;}
.x18{left:408.066655pt;}
.x43{left:433.053333pt;}
.x1d{left:451.453309pt;}
.xa{left:456.573321pt;}
.x1e{left:457.533321pt;}
.x5{left:461.853321pt;}
.x32{left:474.493333pt;}
.x59{left:484.093333pt;}
.x17{left:509.373333pt;}
.x5c{left:532.093321pt;}
.x2e{left:550.973333pt;}
.x3c{left:556.893333pt;}
.x44{left:558.013333pt;}
.x27{left:559.453309pt;}
.x5d{left:563.613321pt;}
.x28{left:565.533321pt;}
.x33{left:607.013333pt;}
.x19{left:627.013321pt;}
.x10{left:637.093321pt;}
.x3d{left:653.093333pt;}
.x45{left:656.613333pt;}
.x34{left:670.533309pt;}
.x35{left:680.613321pt;}
.x38{left:716.133321pt;}
.x11{left:739.333321pt;}
.x4{left:778.239975pt;}
}




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