
    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_090707403f70ee3474cfa5da.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.311035;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_997ca64947e3568ff323215c.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.003906;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_125e17f564f9194b499901de.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.921387;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_a1e09e79b16cf47ca96ae6e7.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.284668;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_d4d6e9a7749989fc71572860.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.003906;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_77d085da3fcdd2ad9ec576c9.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.933594;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_69c8fd6787af524dd752c403.woff2')format("woff");}.ff7{font-family:ff7;line-height:3.333984;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_88cb14ac04fe1268b66040fe.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.284180;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_c3f37888ea913a479582d464.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.284180;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_ffdb971c69072e27236ecfe7.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.402354;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_f281440981873f43e73efd81.woff2')format("woff");}.ffb{font-family:ffb;line-height:3.333984;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);}
.v1{vertical-align:-79.920000px;}
.v3{vertical-align:-23.760000px;}
.v4{vertical-align:-20.880000px;}
.v11{vertical-align:-12.240000px;}
.ve{vertical-align:-8.640000px;}
.v5{vertical-align:-5.760000px;}
.vd{vertical-align:-2.880000px;}
.v8{vertical-align:-1.440000px;}
.v0{vertical-align:0.000000px;}
.v12{vertical-align:2.160000px;}
.v1a{vertical-align:6.480000px;}
.vf{vertical-align:8.640000px;}
.vc{vertical-align:12.960000px;}
.v13{vertical-align:14.400000px;}
.v18{vertical-align:17.976000px;}
.v6{vertical-align:20.880000px;}
.v17{vertical-align:22.320000px;}
.v2{vertical-align:23.760000px;}
.v10{vertical-align:28.800000px;}
.va{vertical-align:30.240000px;}
.vb{vertical-align:35.280000px;}
.v7{vertical-align:36.720000px;}
.v15{vertical-align:40.320000px;}
.v14{vertical-align:46.080000px;}
.v16{vertical-align:47.520000px;}
.v9{vertical-align:51.120000px;}
.v19{vertical-align:58.320000px;}
.v1c{vertical-align:68.400000px;}
.v1b{vertical-align:86.400000px;}
.ls9{letter-spacing:-0.666000px;}
.lsa{letter-spacing:-0.540000px;}
.ls25{letter-spacing:-0.460200px;}
.ls13{letter-spacing:-0.360000px;}
.ls42{letter-spacing:-0.259800px;}
.ls27{letter-spacing:-0.258000px;}
.ls26{letter-spacing:-0.106800px;}
.ls28{letter-spacing:-0.053280px;}
.ls23{letter-spacing:-0.008640px;}
.ls5{letter-spacing:0.000000px;}
.ls57{letter-spacing:0.008640px;}
.lse{letter-spacing:0.012960px;}
.ls8{letter-spacing:0.053280px;}
.ls15{letter-spacing:0.106560px;}
.ls3f{letter-spacing:0.106800px;}
.ls51{letter-spacing:0.132960px;}
.ls0{letter-spacing:0.149760px;}
.ls2a{letter-spacing:0.153600px;}
.ls3{letter-spacing:0.156000px;}
.ls4{letter-spacing:0.180000px;}
.ls3e{letter-spacing:0.206400px;}
.ls1f{letter-spacing:0.206640px;}
.ls19{letter-spacing:0.237600px;}
.ls7{letter-spacing:0.259800px;}
.ls16{letter-spacing:0.259920px;}
.ls6{letter-spacing:0.262200px;}
.ls41{letter-spacing:0.264000px;}
.ls2{letter-spacing:0.298800px;}
.ls40{letter-spacing:0.323400px;}
.ls34{letter-spacing:0.331920px;}
.ls24{letter-spacing:0.360000px;}
.ls33{letter-spacing:0.371520px;}
.ls12{letter-spacing:0.399600px;}
.ls29{letter-spacing:0.460080px;}
.ls5a{letter-spacing:0.480000px;}
.ls55{letter-spacing:0.515520px;}
.ls37{letter-spacing:0.540000px;}
.ls39{letter-spacing:0.709200px;}
.ls21{letter-spacing:0.711360px;}
.ls49{letter-spacing:0.732960px;}
.ls14{letter-spacing:1.080000px;}
.ls2b{letter-spacing:1.188000px;}
.ls10{letter-spacing:1.388160px;}
.lsf{letter-spacing:1.645920px;}
.lsc{letter-spacing:1.980000px;}
.ls17{letter-spacing:2.340000px;}
.ls3c{letter-spacing:2.630880px;}
.ls53{letter-spacing:2.810880px;}
.ls4f{letter-spacing:3.234240px;}
.ls1e{letter-spacing:4.782240px;}
.ls11{letter-spacing:5.220000px;}
.ls3d{letter-spacing:6.060960px;}
.lsb{letter-spacing:7.112160px;}
.ls2d{letter-spacing:7.256160px;}
.ls43{letter-spacing:10.190160px;}
.ls30{letter-spacing:12.959280px;}
.ls50{letter-spacing:12.972960px;}
.ls35{letter-spacing:13.359600px;}
.ls1a{letter-spacing:13.491360px;}
.ls2f{letter-spacing:13.679280px;}
.ls4e{letter-spacing:13.799280px;}
.ls59{letter-spacing:16.506720px;}
.ls36{letter-spacing:16.559280px;}
.ls4a{letter-spacing:16.619760px;}
.ls3b{letter-spacing:17.159760px;}
.ls46{letter-spacing:17.279280px;}
.ls2e{letter-spacing:19.121760px;}
.ls1c{letter-spacing:20.734560px;}
.ls44{letter-spacing:26.897760px;}
.lsd{letter-spacing:30.497760px;}
.ls54{letter-spacing:36.300960px;}
.ls58{letter-spacing:46.026720px;}
.ls38{letter-spacing:51.651360px;}
.ls48{letter-spacing:62.451360px;}
.ls3a{letter-spacing:70.371360px;}
.ls52{letter-spacing:74.340000px;}
.ls1d{letter-spacing:81.470160px;}
.ls20{letter-spacing:142.740000px;}
.ls22{letter-spacing:149.940000px;}
.ls56{letter-spacing:153.684000px;}
.ls4d{letter-spacing:154.746720px;}
.ls32{letter-spacing:154.890720px;}
.ls4b{letter-spacing:158.346720px;}
.ls2c{letter-spacing:158.490720px;}
.ls1b{letter-spacing:201.060000px;}
.ls1{letter-spacing:231.444000px;}
.ls18{letter-spacing:236.995200px;}
.ls4c{letter-spacing:264.972960px;}
.ls45{letter-spacing:382.512960px;}
.ls47{letter-spacing:428.700000px;}
.ls31{letter-spacing:481.872960px;}
.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;}
}
.ws18{word-spacing:-26.106480px;}
.ws0{word-spacing:-16.560000px;}
.ws14{word-spacing:-16.128000px;}
.wse{word-spacing:-15.300000px;}
.ws4{word-spacing:-15.238800px;}
.ws8{word-spacing:-15.199800px;}
.ws16{word-spacing:-15.093600px;}
.ws17{word-spacing:-15.046800px;}
.ws5{word-spacing:-14.993280px;}
.ws3{word-spacing:-14.940000px;}
.ws15{word-spacing:-14.886720px;}
.ws13{word-spacing:-14.833200px;}
.ws1f{word-spacing:-14.680200px;}
.ws9{word-spacing:-14.580000px;}
.wsf{word-spacing:-14.479800px;}
.ws7{word-spacing:-14.274000px;}
.ws1b{word-spacing:-13.470600px;}
.ws1d{word-spacing:-13.411200px;}
.wsa{word-spacing:-13.160160px;}
.wsb{word-spacing:-13.147200px;}
.ws1{word-spacing:-10.440000px;}
.wsc{word-spacing:-9.732960px;}
.ws2{word-spacing:-9.720000px;}
.wsd{word-spacing:-9.711360px;}
.ws11{word-spacing:-9.187200px;}
.ws10{word-spacing:-9.080400px;}
.ws27{word-spacing:-8.929200px;}
.ws6{word-spacing:0.000000px;}
.ws1e{word-spacing:11.945280px;}
.ws26{word-spacing:12.032640px;}
.ws1c{word-spacing:12.113280px;}
.ws28{word-spacing:12.144960px;}
.ws23{word-spacing:12.273120px;}
.ws21{word-spacing:12.528480px;}
.ws20{word-spacing:12.552480px;}
.ws22{word-spacing:12.562560px;}
.ws1a{word-spacing:12.604320px;}
.ws19{word-spacing:12.696480px;}
.ws29{word-spacing:12.752640px;}
.ws25{word-spacing:12.932640px;}
.ws24{word-spacing:35.492400px;}
.ws12{word-spacing:86.153760px;}
._1{margin-left:-1917.060480px;}
._3{margin-left:-1644.183360px;}
._7{margin-left:-1631.338080px;}
._1d{margin-left:-1353.461280px;}
._4{margin-left:-1170.942000px;}
._5{margin-left:-1149.065280px;}
._1c{margin-left:-325.396800px;}
._6{margin-left:-33.120000px;}
._31{margin-left:-26.265600px;}
._2a{margin-left:-12.261600px;}
._a{margin-left:-10.410720px;}
._2d{margin-left:-6.083040px;}
._9{margin-left:-4.404960px;}
._8{margin-left:-3.064320px;}
._2{margin-left:-1.126080px;}
._0{width:1.321920px;}
._b{width:3.052560px;}
._c{width:4.350240px;}
._d{width:5.537760px;}
._21{width:6.539040px;}
._e{width:7.547760px;}
._17{width:9.501840px;}
._16{width:10.646400px;}
._12{width:11.832480px;}
._13{width:13.744800px;}
._2f{width:14.971200px;}
._15{width:16.852320px;}
._1e{width:18.076320px;}
._14{width:19.900080px;}
._1a{width:20.968560px;}
._18{width:22.529520px;}
._1f{width:23.700960px;}
._f{width:24.740640px;}
._19{width:26.158320px;}
._20{width:27.429840px;}
._1b{width:29.164320px;}
._11{width:30.518640px;}
._10{width:32.150880px;}
._35{width:33.271920px;}
._24{width:34.644240px;}
._30{width:35.666640px;}
._23{width:36.871920px;}
._25{width:38.427120px;}
._22{width:39.800160px;}
._27{width:40.935600px;}
._26{width:42.728400px;}
._2e{width:44.012160px;}
._3a{width:45.835920px;}
._3d{width:48.203280px;}
._3c{width:49.911120px;}
._3e{width:55.554480px;}
._36{width:56.831760px;}
._28{width:62.460000px;}
._34{width:63.667440px;}
._3b{width:70.038720px;}
._38{width:88.354080px;}
._39{width:89.405040px;}
._37{width:104.281200px;}
._33{width:120.015360px;}
._2b{width:160.380000px;}
._2c{width:188.460000px;}
._32{width:194.556000px;}
._29{width:201.060000px;}
.fc3{color:transparent;}
.fc2{color:rgb(0,112,192);}
.fc1{color:rgb(13,13,13);}
.fc0{color:rgb(0,0,0);}
.fs8{font-size:2.880000px;}
.fs7{font-size:36.000000px;}
.fs3{font-size:38.880000px;}
.fs2{font-size:41.760000px;}
.fs5{font-size:48.240000px;}
.fs6{font-size:59.760000px;}
.fs1{font-size:66.240000px;}
.fs0{font-size:77.760000px;}
.fs4{font-size:95.760000px;}
.y0{bottom:0.000000px;}
.y15f{bottom:3.420000px;}
.y15e{bottom:3.780000px;}
.y163{bottom:3.810000px;}
.y98{bottom:5.760000px;}
.y8{bottom:5.940000px;}
.y9f{bottom:6.120000px;}
.y10d{bottom:6.294000px;}
.y7{bottom:6.300000px;}
.y184{bottom:6.480000px;}
.y189{bottom:6.660000px;}
.y185{bottom:6.840000px;}
.y170{bottom:7.200000px;}
.y1b6{bottom:7.380000px;}
.y1b8{bottom:7.560000px;}
.y1cb{bottom:8.280000px;}
.y1cf{bottom:8.460000px;}
.y1cd{bottom:8.640000px;}
.y1d0{bottom:8.820000px;}
.y14e{bottom:10.620000px;}
.y151{bottom:10.800000px;}
.ya{bottom:11.160000px;}
.y153{bottom:11.700000px;}
.y9{bottom:11.880000px;}
.y14f{bottom:12.240000px;}
.y144{bottom:13.500000px;}
.y148{bottom:13.680000px;}
.y141{bottom:13.710000px;}
.y176{bottom:14.220000px;}
.y146{bottom:14.580000px;}
.y96{bottom:15.660000px;}
.y142{bottom:15.840000px;}
.y1fc{bottom:18.030000px;}
.y1f1{bottom:18.360000px;}
.y1f3{bottom:18.720000px;}
.y1fe{bottom:19.620000px;}
.y110{bottom:19.800000px;}
.y112{bottom:19.836000px;}
.y10e{bottom:19.974000px;}
.y172{bottom:21.060000px;}
.y15c{bottom:21.780000px;}
.y97{bottom:25.560000px;}
.yf3{bottom:25.740000px;}
.y182{bottom:25.770000px;}
.ye7{bottom:25.920000px;}
.y9e{bottom:26.100000px;}
.ye3{bottom:26.280000px;}
.y1ef{bottom:27.000000px;}
.y1b4{bottom:28.485000px;}
.y1f0{bottom:35.640000px;}
.y14c{bottom:37.800000px;}
.yb{bottom:39.960000px;}
.y13f{bottom:43.950000px;}
.y9d{bottom:45.900000px;}
.ye2{bottom:46.290000px;}
.y6{bottom:55.440000px;}
.y9c{bottom:65.700000px;}
.y224{bottom:84.240000px;}
.y9b{bottom:85.500000px;}
.y39{bottom:86.040000px;}
.y113{bottom:87.300000px;}
.y1fa{bottom:89.640000px;}
.y88{bottom:90.540000px;}
.ydf{bottom:91.260000px;}
.y24f{bottom:91.440000px;}
.yb0{bottom:92.700000px;}
.y13d{bottom:93.060000px;}
.y180{bottom:97.920000px;}
.y223{bottom:104.040000px;}
.y9a{bottom:105.300000px;}
.y38{bottom:105.840000px;}
.y111{bottom:107.100000px;}
.y1f9{bottom:109.440000px;}
.y87{bottom:110.340000px;}
.y24e{bottom:111.240000px;}
.yde{bottom:111.420000px;}
.y1b2{bottom:111.600000px;}
.yaf{bottom:112.500000px;}
.y72{bottom:112.860000px;}
.y13c{bottom:113.220000px;}
.y1d4{bottom:113.760000px;}
.y222{bottom:123.840000px;}
.y37{bottom:125.640000px;}
.y10f{bottom:126.936000px;}
.y1f8{bottom:129.276000px;}
.y24d{bottom:131.076000px;}
.ydd{bottom:131.436000px;}
.yae{bottom:132.336000px;}
.y71{bottom:132.876000px;}
.y13b{bottom:133.056000px;}
.y17f{bottom:135.756000px;}
.y1d3{bottom:136.836000px;}
.y86{bottom:138.816000px;}
.y221{bottom:143.856000px;}
.y36{bottom:145.656000px;}
.y10c{bottom:146.736000px;}
.y1b1{bottom:148.176000px;}
.y1f7{bottom:149.076000px;}
.y24c{bottom:151.050000px;}
.ydc{bottom:151.230000px;}
.yad{bottom:152.310000px;}
.y70{bottom:152.670000px;}
.y13a{bottom:153.030000px;}
.y1b0{bottom:158.250000px;}
.y85{bottom:158.970000px;}
.y1d2{bottom:160.050000px;}
.y220{bottom:163.650000px;}
.y35{bottom:165.450000px;}
.y10b{bottom:167.430000px;}
.y1f6{bottom:169.050000px;}
.y24b{bottom:170.850000px;}
.ydb{bottom:171.030000px;}
.yac{bottom:172.110000px;}
.y6f{bottom:172.470000px;}
.y139{bottom:172.830000px;}
.y17e{bottom:173.730000px;}
.y84{bottom:178.770000px;}
.y1d1{bottom:183.090000px;}
.y1f5{bottom:183.450000px;}
.y34{bottom:185.250000px;}
.y1af{bottom:189.750000px;}
.y24a{bottom:190.650000px;}
.yda{bottom:190.830000px;}
.yab{bottom:191.910000px;}
.y6e{bottom:192.270000px;}
.y138{bottom:192.630000px;}
.y10a{bottom:193.710000px;}
.y83{bottom:198.750000px;}
.y21f{bottom:203.250000px;}
.y33{bottom:205.050000px;}
.y1ce{bottom:206.130000px;}
.y1ae{bottom:209.550000px;}
.y249{bottom:210.450000px;}
.yd9{bottom:210.630000px;}
.yaa{bottom:211.710000px;}
.y17d{bottom:211.890000px;}
.y6d{bottom:212.070000px;}
.y137{bottom:212.430000px;}
.y109{bottom:213.690000px;}
.y1f4{bottom:216.390000px;}
.y82{bottom:218.550000px;}
.y21e{bottom:223.050000px;}
.y32{bottom:224.850000px;}
.y1ad{bottom:228.990000px;}
.y1cc{bottom:229.350000px;}
.y248{bottom:230.250000px;}
.yd8{bottom:230.610000px;}
.ya9{bottom:231.510000px;}
.y17c{bottom:231.690000px;}
.y6c{bottom:232.050000px;}
.y136{bottom:232.230000px;}
.y108{bottom:233.850000px;}
.y81{bottom:238.350000px;}
.y21d{bottom:243.030000px;}
.y31{bottom:244.830000px;}
.y1ac{bottom:249.150000px;}
.y1f2{bottom:249.510000px;}
.y247{bottom:250.230000px;}
.yd7{bottom:250.410000px;}
.ya8{bottom:251.490000px;}
.y6b{bottom:251.850000px;}
.y135{bottom:252.210000px;}
.y1ca{bottom:252.390000px;}
.y107{bottom:253.650000px;}
.y80{bottom:258.150000px;}
.y21c{bottom:262.830000px;}
.y30{bottom:264.630000px;}
.y1ab{bottom:269.130000px;}
.y246{bottom:270.030000px;}
.yd6{bottom:270.210000px;}
.ya7{bottom:271.290000px;}
.y6a{bottom:271.650000px;}
.y134{bottom:272.010000px;}
.y106{bottom:273.450000px;}
.y7f{bottom:277.950000px;}
.y1c9{bottom:281.370000px;}
.y1ee{bottom:282.450000px;}
.y21b{bottom:282.630000px;}
.y2f{bottom:284.430000px;}
.y245{bottom:289.830000px;}
.yd5{bottom:290.010000px;}
.ya6{bottom:291.090000px;}
.y17b{bottom:291.270000px;}
.y69{bottom:291.450000px;}
.y133{bottom:291.810000px;}
.y105{bottom:293.250000px;}
.y7e{bottom:297.930000px;}
.y1c8{bottom:301.170000px;}
.y21a{bottom:302.430000px;}
.y2e{bottom:304.230000px;}
.y244{bottom:309.630000px;}
.yd4{bottom:309.810000px;}
.ya5{bottom:310.890000px;}
.y17a{bottom:311.070000px;}
.y68{bottom:311.250000px;}
.y132{bottom:311.610000px;}
.y104{bottom:313.230000px;}
.y7d{bottom:317.730000px;}
.y1c7{bottom:321.330000px;}
.y219{bottom:321.870000px;}
.y2d{bottom:324.030000px;}
.y179{bottom:325.470000px;}
.y243{bottom:329.430000px;}
.yd3{bottom:329.790000px;}
.ya4{bottom:330.330000px;}
.y131{bottom:331.050000px;}
.y67{bottom:331.230000px;}
.y103{bottom:333.030000px;}
.y7c{bottom:337.530000px;}
.y218{bottom:338.430000px;}
.y1c6{bottom:341.130000px;}
.y2c{bottom:344.010000px;}
.y242{bottom:349.410000px;}
.yd2{bottom:349.590000px;}
.y66{bottom:351.030000px;}
.y102{bottom:352.830000px;}
.y1ed{bottom:353.550000px;}
.y178{bottom:353.910000px;}
.y1aa{bottom:357.150000px;}
.y7b{bottom:357.330000px;}
.ya3{bottom:359.670000px;}
.y1c5{bottom:360.930000px;}
.y2b{bottom:363.810000px;}
.y1a9{bottom:367.230000px;}
.y241{bottom:368.850000px;}
.yd1{bottom:369.390000px;}
.y65{bottom:370.830000px;}
.y130{bottom:371.190000px;}
.y101{bottom:372.630000px;}
.y1ec{bottom:373.350000px;}
.y7a{bottom:377.130000px;}
.ya2{bottom:379.515000px;}
.y1c4{bottom:380.955000px;}
.y177{bottom:382.575000px;}
.y2a{bottom:383.655000px;}
.y12f{bottom:387.435000px;}
.y240{bottom:389.055000px;}
.yd0{bottom:389.235000px;}
.y64{bottom:390.675000px;}
.y100{bottom:392.475000px;}
.y1eb{bottom:393.555000px;}
.y79{bottom:397.155000px;}
.ya1{bottom:399.315000px;}
.y1c3{bottom:400.755000px;}
.y29{bottom:403.455000px;}
.y23f{bottom:408.855000px;}
.ycf{bottom:409.035000px;}
.y63{bottom:410.475000px;}
.y175{bottom:411.015000px;}
.yff{bottom:412.455000px;}
.y1ea{bottom:413.535000px;}
.y1a8{bottom:416.595000px;}
.y78{bottom:416.955000px;}
.ya0{bottom:419.115000px;}
.y1c2{bottom:420.555000px;}
.y28{bottom:423.255000px;}
.y23e{bottom:428.655000px;}
.yce{bottom:429.015000px;}
.y62{bottom:430.455000px;}
.yfe{bottom:432.255000px;}
.y1e9{bottom:433.335000px;}
.y99{bottom:433.515000px;}
.y77{bottom:436.755000px;}
.y174{bottom:439.455000px;}
.y1c1{bottom:440.355000px;}
.y27{bottom:443.235000px;}
.y1a7{bottom:446.475000px;}
.y23d{bottom:448.635000px;}
.ycd{bottom:448.815000px;}
.y61{bottom:450.255000px;}
.yfd{bottom:452.055000px;}
.y1e8{bottom:453.135000px;}
.y76{bottom:456.195000px;}
.y1c0{bottom:460.155000px;}
.y26{bottom:463.035000px;}
.y1a6{bottom:466.275000px;}
.y23c{bottom:468.435000px;}
.ycc{bottom:468.615000px;}
.y60{bottom:470.055000px;}
.yfc{bottom:471.855000px;}
.y75{bottom:472.935000px;}
.y173{bottom:474.735000px;}
.y1bf{bottom:480.135000px;}
.y25{bottom:482.835000px;}
.ycb{bottom:488.055000px;}
.y23b{bottom:488.235000px;}
.y5f{bottom:489.855000px;}
.yfb{bottom:491.655000px;}
.y1e7{bottom:492.735000px;}
.y1be{bottom:499.935000px;}
.y24{bottom:502.635000px;}
.y23a{bottom:507.675000px;}
.yca{bottom:507.855000px;}
.y5e{bottom:509.655000px;}
.y1a4{bottom:509.835000px;}
.y171{bottom:510.015000px;}
.yfa{bottom:511.635000px;}
.y1e6{bottom:512.355000px;}
.y1a5{bottom:512.715000px;}
.y217{bottom:514.335000px;}
.y1bd{bottom:519.375000px;}
.y23{bottom:522.435000px;}
.y239{bottom:527.475000px;}
.yc9{bottom:528.195000px;}
.y5d{bottom:529.635000px;}
.y1a3{bottom:530.355000px;}
.yf9{bottom:531.435000px;}
.y1e5{bottom:532.515000px;}
.y216{bottom:534.135000px;}
.y1bc{bottom:535.935000px;}
.y22{bottom:542.415000px;}
.y238{bottom:544.215000px;}
.y16f{bottom:545.295000px;}
.yc8{bottom:547.995000px;}
.y5c{bottom:549.435000px;}
.y1a2{bottom:550.335000px;}
.yf8{bottom:551.235000px;}
.y1e4{bottom:552.315000px;}
.y95{bottom:553.395000px;}
.y215{bottom:553.935000px;}
.y21{bottom:561.855000px;}
.y3a{bottom:562.215000px;}
.yc7{bottom:567.795000px;}
.y5b{bottom:569.235000px;}
.y1a1{bottom:570.135000px;}
.yf7{bottom:571.035000px;}
.y214{bottom:573.735000px;}
.y1e3{bottom:574.455000px;}
.y16e{bottom:576.975000px;}
.y20{bottom:581.655000px;}
.y1a0{bottom:587.055000px;}
.yc6{bottom:587.595000px;}
.y5a{bottom:589.035000px;}
.yf6{bottom:590.475000px;}
.y213{bottom:593.535000px;}
.y1e2{bottom:594.435000px;}
.y16d{bottom:596.775000px;}
.y19f{bottom:597.135000px;}
.y94{bottom:599.475000px;}
.y1f{bottom:601.815000px;}
.yc5{bottom:607.395000px;}
.y59{bottom:608.835000px;}
.yf5{bottom:610.455000px;}
.y164{bottom:611.535000px;}
.y212{bottom:613.515000px;}
.y1e1{bottom:614.415000px;}
.y93{bottom:619.815000px;}
.y19e{bottom:623.595000px;}
.yc4{bottom:627.195000px;}
.y58{bottom:628.815000px;}
.y162{bottom:629.535000px;}
.y19d{bottom:631.155000px;}
.y1e{bottom:632.985000px;}
.y211{bottom:633.345000px;}
.yf4{bottom:634.245000px;}
.y16c{bottom:635.145000px;}
.y1e0{bottom:639.465000px;}
.y92{bottom:639.645000px;}
.yc3{bottom:647.205000px;}
.y161{bottom:647.565000px;}
.y57{bottom:648.645000px;}
.y12e{bottom:648.825000px;}
.y1df{bottom:649.545000px;}
.y1d{bottom:652.785000px;}
.y16b{bottom:654.945000px;}
.y19c{bottom:655.845000px;}
.y91{bottom:659.445000px;}
.y160{bottom:665.565000px;}
.yc2{bottom:667.005000px;}
.y56{bottom:668.445000px;}
.y12d{bottom:668.805000px;}
.y1c{bottom:672.585000px;}
.yf2{bottom:673.845000px;}
.y16a{bottom:674.745000px;}
.y210{bottom:675.465000px;}
.y19b{bottom:675.645000px;}
.y90{bottom:679.245000px;}
.y15b{bottom:683.565000px;}
.yc1{bottom:686.805000px;}
.y55{bottom:688.245000px;}
.y12c{bottom:688.605000px;}
.y1b{bottom:692.565000px;}
.y169{bottom:694.725000px;}
.y19a{bottom:695.445000px;}
.y1de{bottom:696.885000px;}
.y8f{bottom:699.045000px;}
.y15d{bottom:701.565000px;}
.yc0{bottom:706.605000px;}
.y1dd{bottom:706.965000px;}
.y54{bottom:708.045000px;}
.y12b{bottom:708.405000px;}
.y1a{bottom:712.365000px;}
.yf1{bottom:714.345000px;}
.y168{bottom:714.525000px;}
.y199{bottom:715.425000px;}
.y20f{bottom:717.045000px;}
.y8e{bottom:719.025000px;}
.y15a{bottom:725.325000px;}
.ybf{bottom:726.045000px;}
.y53{bottom:728.025000px;}
.y12a{bottom:728.205000px;}
.y237{bottom:730.365000px;}
.y19{bottom:732.165000px;}
.y167{bottom:734.325000px;}
.y198{bottom:735.225000px;}
.y8d{bottom:738.825000px;}
.y20e{bottom:742.065000px;}
.y159{bottom:745.485000px;}
.y1dc{bottom:746.205000px;}
.y129{bottom:747.645000px;}
.y52{bottom:747.825000px;}
.y236{bottom:750.165000px;}
.y18{bottom:751.965000px;}
.y20d{bottom:752.145000px;}
.y166{bottom:753.765000px;}
.y197{bottom:755.025000px;}
.ybe{bottom:755.385000px;}
.y8c{bottom:758.625000px;}
.yf0{bottom:760.425000px;}
.y1bb{bottom:762.765000px;}
.y158{bottom:765.465000px;}
.y51{bottom:767.625000px;}
.y235{bottom:769.965000px;}
.y165{bottom:770.505000px;}
.y17{bottom:771.765000px;}
.y196{bottom:774.825000px;}
.ybd{bottom:775.185000px;}
.y128{bottom:776.985000px;}
.y1ba{bottom:777.165000px;}
.y8b{bottom:778.425000px;}
.yef{bottom:780.405000px;}
.y157{bottom:785.265000px;}
.y50{bottom:787.425000px;}
.y1db{bottom:787.965000px;}
.y234{bottom:789.765000px;}
.y16{bottom:791.745000px;}
.y195{bottom:794.625000px;}
.ybc{bottom:794.985000px;}
.y127{bottom:796.785000px;}
.y8a{bottom:798.225000px;}
.y1b9{bottom:798.945000px;}
.y20c{bottom:799.485000px;}
.yee{bottom:800.565000px;}
.y156{bottom:805.065000px;}
.y4f{bottom:807.225000px;}
.y20b{bottom:809.565000px;}
.y1da{bottom:809.745000px;}
.y15{bottom:811.545000px;}
.y194{bottom:814.605000px;}
.ybb{bottom:814.785000px;}
.y126{bottom:816.585000px;}
.y89{bottom:817.845000px;}
.y155{bottom:819.465000px;}
.yed{bottom:820.365000px;}
.y1b7{bottom:820.905000px;}
.y4e{bottom:827.205000px;}
.y14{bottom:831.345000px;}
.yba{bottom:831.525000px;}
.y193{bottom:834.405000px;}
.y125{bottom:834.585000px;}
.y123{bottom:838.185000px;}
.yb9{bottom:839.085000px;}
.yec{bottom:840.165000px;}
.y1b5{bottom:842.865000px;}
.y124{bottom:844.125000px;}
.y154{bottom:845.565000px;}
.y4d{bottom:847.005000px;}
.y20a{bottom:848.805000px;}
.y233{bottom:850.065000px;}
.y13{bottom:851.145000px;}
.y1d9{bottom:852.225000px;}
.y192{bottom:854.205000px;}
.yeb{bottom:854.565000px;}
.y122{bottom:858.345000px;}
.y1b3{bottom:864.645000px;}
.yb8{bottom:865.185000px;}
.y4c{bottom:866.805000px;}
.y209{bottom:868.605000px;}
.y152{bottom:870.765000px;}
.y12{bottom:871.125000px;}
.y232{bottom:871.845000px;}
.y1d8{bottom:872.025000px;}
.y191{bottom:874.005000px;}
.y121{bottom:878.325000px;}
.yb7{bottom:885.030000px;}
.y4b{bottom:886.650000px;}
.y1d7{bottom:888.990000px;}
.y208{bottom:890.430000px;}
.y231{bottom:892.050000px;}
.y190{bottom:893.850000px;}
.yea{bottom:895.110000px;}
.y150{bottom:896.910000px;}
.y120{bottom:898.170000px;}
.y1d6{bottom:899.070000px;}
.y11{bottom:899.610000px;}
.yb6{bottom:901.770000px;}
.y251{bottom:906.090000px;}
.y4a{bottom:906.450000px;}
.y207{bottom:907.170000px;}
.yb5{bottom:909.330000px;}
.y230{bottom:911.850000px;}
.y18f{bottom:913.830000px;}
.y10{bottom:914.010000px;}
.y206{bottom:917.250000px;}
.y11f{bottom:917.970000px;}
.y14b{bottom:922.110000px;}
.y1d5{bottom:925.530000px;}
.y49{bottom:926.430000px;}
.y22f{bottom:933.450000px;}
.y18e{bottom:933.630000px;}
.yb4{bottom:935.430000px;}
.ye9{bottom:935.610000px;}
.y11e{bottom:937.770000px;}
.yf{bottom:939.030000px;}
.y205{bottom:944.070000px;}
.y48{bottom:946.230000px;}
.y18d{bottom:948.030000px;}
.y14d{bottom:949.290000px;}
.y204{bottom:954.150000px;}
.yb3{bottom:955.230000px;}
.y11d{bottom:956.670000px;}
.y22e{bottom:958.470000px;}
.y11c{bottom:963.870000px;}
.y47{bottom:966.030000px;}
.y22d{bottom:968.550000px;}
.y18c{bottom:969.270000px;}
.yb2{bottom:971.970000px;}
.ye{bottom:974.130000px;}
.ye8{bottom:975.930000px;}
.yb1{bottom:979.530000px;}
.y14a{bottom:980.250000px;}
.y203{bottom:984.750000px;}
.y46{bottom:985.830000px;}
.y11b{bottom:987.810000px;}
.y18b{bottom:990.510000px;}
.yd{bottom:994.650000px;}
.y149{bottom:1000.050000px;}
.y202{bottom:1004.550000px;}
.y11a{bottom:1004.730000px;}
.y45{bottom:1005.630000px;}
.y18a{bottom:1011.750000px;}
.y119{bottom:1012.290000px;}
.y147{bottom:1014.810000px;}
.y22c{bottom:1015.890000px;}
.ye6{bottom:1016.430000px;}
.y201{bottom:1024.350000px;}
.y44{bottom:1025.610000px;}
.y22b{bottom:1025.970000px;}
.yc{bottom:1026.330000px;}
.y188{bottom:1032.990000px;}
.y118{bottom:1037.130000px;}
.y145{bottom:1042.890000px;}
.y200{bottom:1044.150000px;}
.y43{bottom:1045.410000px;}
.y187{bottom:1054.050000px;}
.y5{bottom:1055.670000px;}
.ye5{bottom:1056.750000px;}
.y117{bottom:1057.110000px;}
.y1ff{bottom:1058.550000px;}
.y250{bottom:1064.850000px;}
.y42{bottom:1065.210000px;}
.y22a{bottom:1065.390000px;}
.y143{bottom:1072.050000px;}
.y116{bottom:1073.670000px;}
.y186{bottom:1075.290000px;}
.y115{bottom:1081.230000px;}
.y74{bottom:1084.650000px;}
.y41{bottom:1085.010000px;}
.y229{bottom:1085.190000px;}
.y4{bottom:1089.150000px;}
.y1fd{bottom:1091.490000px;}
.y183{bottom:1096.530000px;}
.ye1{bottom:1097.250000px;}
.y13e{bottom:1099.950000px;}
.y228{bottom:1103.910000px;}
.y73{bottom:1104.450000px;}
.y40{bottom:1104.810000px;}
.y227{bottom:1113.990000px;}
.y181{bottom:1117.770000px;}
.y3{bottom:1120.110000px;}
.y3f{bottom:1124.790000px;}
.y1fb{bottom:1125.510000px;}
.y140{bottom:1130.190000px;}
.ye4{bottom:1137.600000px;}
.y226{bottom:1142.640000px;}
.y114{bottom:1144.260000px;}
.y3e{bottom:1144.620000px;}
.y2{bottom:1150.920000px;}
.y225{bottom:1152.720000px;}
.ye0{bottom:1164.060000px;}
.y3d{bottom:1164.420000px;}
.y1{bottom:1182.780000px;}
.y3c{bottom:1193.580000px;}
.y3b{bottom:1215.360000px;}
.h1e{height:2.826563px;}
.h32{height:17.280000px;}
.h33{height:17.316000px;}
.h1d{height:19.800000px;}
.h1f{height:19.836000px;}
.h18{height:19.980000px;}
.h39{height:20.340000px;}
.h38{height:20.520000px;}
.h3e{height:21.060000px;}
.h5{height:21.240000px;}
.h3f{height:22.320000px;}
.h41{height:22.356000px;}
.h40{height:22.500000px;}
.h2c{height:24.300000px;}
.h2e{height:24.480000px;}
.h34{height:25.020000px;}
.h30{height:25.380000px;}
.h2f{height:25.416000px;}
.h2d{height:26.280000px;}
.h28{height:27.180000px;}
.h2a{height:27.360000px;}
.h26{height:27.396000px;}
.h36{height:27.720000px;}
.h37{height:27.756000px;}
.h29{height:28.260000px;}
.h27{height:29.520000px;}
.h47{height:32.040000px;}
.h45{height:32.076000px;}
.h44{height:32.220000px;}
.h46{height:33.300000px;}
.h35{height:34.560000px;}
.h31{height:35.280000px;}
.he{height:36.281250px;}
.hc{height:38.158594px;}
.h7{height:39.183750px;}
.h11{height:39.600000px;}
.h19{height:39.636000px;}
.h1a{height:39.780000px;}
.h1c{height:39.816000px;}
.h6{height:42.086250px;}
.h3d{height:42.156000px;}
.h4a{height:42.894141px;}
.h10{height:46.736719px;}
.hb{height:48.616875px;}
.h2b{height:51.480000px;}
.h25{height:57.636000px;}
.h1b{height:58.621992px;}
.hd{height:58.651172px;}
.h13{height:59.038594px;}
.hf{height:60.226875px;}
.h17{height:60.336000px;}
.h3a{height:61.423863px;}
.h43{height:64.620000px;}
.h4{height:65.010937px;}
.h8{height:65.884219px;}
.h3{height:66.757500px;}
.h9{height:67.565039px;}
.h2{height:78.367500px;}
.h23{height:83.254922px;}
.h15{height:88.891172px;}
.ha{height:96.508125px;}
.h12{height:118.980000px;}
.h20{height:119.140664px;}
.h3b{height:120.094922px;}
.h22{height:121.300664px;}
.h14{height:122.891484px;}
.h24{height:133.540664px;}
.h21{height:147.940664px;}
.h16{height:149.380664px;}
.h49{height:159.460664px;}
.h3c{height:165.220664px;}
.h42{height:167.380664px;}
.h48{height:205.540664px;}
.h1{height:1263.000000px;}
.h0{height:1263.060000px;}
.w3e{width:4.320000px;}
.w3b{width:5.040000px;}
.w26{width:25.380000px;}
.w27{width:26.280000px;}
.w25{width:26.460000px;}
.w41{width:28.800000px;}
.w42{width:30.960000px;}
.w43{width:31.140000px;}
.wa{width:31.500000px;}
.w2a{width:40.320000px;}
.w34{width:42.300000px;}
.w48{width:43.380000px;}
.w40{width:44.100000px;}
.w14{width:46.080000px;}
.wd{width:47.880000px;}
.wb{width:52.056000px;}
.we{width:52.380000px;}
.w18{width:54.036000px;}
.w4a{width:54.216000px;}
.w3{width:54.936000px;}
.w1f{width:55.980000px;}
.w20{width:56.160000px;}
.w45{width:56.736000px;}
.w4e{width:56.880000px;}
.w8{width:56.916000px;}
.w1b{width:57.960000px;}
.w30{width:58.716000px;}
.w6{width:61.560000px;}
.w7{width:61.740000px;}
.w5{width:61.776000px;}
.w39{width:63.036000px;}
.w49{width:64.260000px;}
.w38{width:64.440000px;}
.w2c{width:64.620000px;}
.w36{width:68.580000px;}
.w2f{width:69.300000px;}
.w2e{width:69.876000px;}
.w32{width:71.280000px;}
.w24{width:71.640000px;}
.w23{width:71.676000px;}
.w4f{width:73.980000px;}
.w28{width:74.916000px;}
.w44{width:75.780000px;}
.w22{width:79.740000px;}
.w31{width:80.676000px;}
.w10{width:81.576000px;}
.w47{width:82.836000px;}
.w46{width:84.240000px;}
.w17{width:84.600000px;}
.w9{width:86.400000px;}
.wf{width:91.080000px;}
.w21{width:91.296000px;}
.w11{width:93.816000px;}
.w12{width:95.400000px;}
.w13{width:98.856000px;}
.w2d{width:104.040000px;}
.w1e{width:105.516000px;}
.w2b{width:116.136000px;}
.w1a{width:116.640000px;}
.w50{width:116.856000px;}
.w51{width:117.000000px;}
.w16{width:117.036000px;}
.w1c{width:120.456000px;}
.w37{width:124.416000px;}
.w35{width:124.596000px;}
.w29{width:124.956000px;}
.w15{width:127.656000px;}
.w33{width:133.956000px;}
.w19{width:163.830000px;}
.w3a{width:172.650000px;}
.wc{width:173.370000px;}
.w4d{width:187.095000px;}
.w1d{width:219.090000px;}
.w3d{width:245.550000px;}
.w4b{width:274.935000px;}
.w4c{width:612.825000px;}
.w3f{width:642.930000px;}
.w3c{width:715.110000px;}
.w4{width:719.970000px;}
.w2{width:892.439987px;}
.w0{width:892.440000px;}
.w1{width:892.500000px;}
.x48{left:-1.440000px;}
.x0{left:0.000000px;}
.x8{left:2.880000px;}
.x3{left:8.100000px;}
.x1{left:54.179987px;}
.x2{left:62.100000px;}
.x73{left:64.799987px;}
.xd{left:75.599987px;}
.x65{left:77.220000px;}
.x10{left:81.719987px;}
.x9{left:83.699987px;}
.x1b{left:86.940000px;}
.x76{left:91.475987px;}
.x43{left:98.135987px;}
.x50{left:101.375987px;}
.x62{left:106.235987px;}
.x7e{left:108.035987px;}
.x2a{left:109.476000px;}
.x4{left:117.756000px;}
.x7a{left:120.995987px;}
.x5e{left:123.155987px;}
.x52{left:125.495987px;}
.x63{left:132.155987px;}
.x3c{left:136.116000px;}
.x1c{left:139.896000px;}
.x30{left:146.736000px;}
.x20{left:147.816000px;}
.x64{left:150.329987px;}
.x35{left:157.350000px;}
.x78{left:160.229987px;}
.x46{left:166.169973px;}
.x53{left:167.789987px;}
.x47{left:172.470000px;}
.x32{left:173.910000px;}
.x2d{left:176.070000px;}
.x49{left:177.330000px;}
.x14{left:179.490000px;}
.x23{left:181.650000px;}
.x4a{left:185.609987px;}
.xc{left:188.129987px;}
.x45{left:192.089987px;}
.x70{left:195.689987px;}
.xb{left:198.929987px;}
.x33{left:200.190000px;}
.x3d{left:208.110000px;}
.x5d{left:212.069987px;}
.x31{left:227.190000px;}
.x1f{left:231.690000px;}
.x7b{left:236.909987px;}
.x4b{left:239.069973px;}
.x15{left:241.950000px;}
.x21{left:243.210000px;}
.x4c{left:245.370000px;}
.x44{left:246.809987px;}
.x4d{left:249.510000px;}
.x72{left:252.749987px;}
.x4e{left:257.249987px;}
.x71{left:262.829987px;}
.x66{left:265.035000px;}
.x5f{left:268.454973px;}
.x2b{left:274.035000px;}
.x60{left:279.615000px;}
.x2e{left:282.315000px;}
.x4f{left:283.754987px;}
.xa{left:286.094987px;}
.x61{left:288.074987px;}
.x54{left:290.954987px;}
.x16{left:299.595000px;}
.x1d{left:314.175000px;}
.x67{left:322.635000px;}
.x36{left:324.255000px;}
.x2c{left:332.715000px;}
.x7{left:334.149000px;}
.x51{left:336.134987px;}
.x2f{left:339.015000px;}
.x22{left:342.075000px;}
.x74{left:343.514987px;}
.x11{left:346.029000px;}
.x1e{left:362.775000px;}
.x77{left:367.814987px;}
.x3e{left:385.815000px;}
.x79{left:393.554987px;}
.x75{left:394.814987px;}
.x6{left:415.509000px;}
.x5{left:429.009000px;}
.x37{left:441.285000px;}
.x1a{left:445.964987px;}
.xe{left:472.964987px;}
.xf{left:494.564987px;}
.x7c{left:499.964987px;}
.x38{left:506.625000px;}
.x3f{left:511.125000px;}
.x6f{left:512.204987px;}
.x27{left:519.404987px;}
.x7d{left:526.964987px;}
.x34{left:536.504987px;}
.x68{left:538.485000px;}
.x55{left:548.205000px;}
.x59{left:557.204987px;}
.x5a{left:558.645000px;}
.x24{left:560.444987px;}
.x19{left:566.024987px;}
.x18{left:569.084987px;}
.x13{left:571.064987px;}
.x29{left:575.564987px;}
.x40{left:580.605000px;}
.x6a{left:594.824987px;}
.x17{left:597.524987px;}
.x39{left:611.385000px;}
.x26{left:631.769987px;}
.x5b{left:642.210000px;}
.x69{left:656.070000px;}
.x3a{left:682.170000px;}
.x56{left:684.330000px;}
.x5c{left:686.310000px;}
.x6b{left:701.429987px;}
.x41{left:705.750000px;}
.x3b{left:752.190000px;}
.x57{left:760.830000px;}
.x42{left:770.910000px;}
.x25{left:772.529987px;}
.x12{left:776.489987px;}
.x6d{left:786.749987px;}
.x6c{left:802.979987px;}
.x6e{left:812.519987px;}
.x58{left:821.159987px;}
.x28{left:823.499987px;}
@media print{
.v1{vertical-align:-71.040000pt;}
.v3{vertical-align:-21.120000pt;}
.v4{vertical-align:-18.560000pt;}
.v11{vertical-align:-10.880000pt;}
.ve{vertical-align:-7.680000pt;}
.v5{vertical-align:-5.120000pt;}
.vd{vertical-align:-2.560000pt;}
.v8{vertical-align:-1.280000pt;}
.v0{vertical-align:0.000000pt;}
.v12{vertical-align:1.920000pt;}
.v1a{vertical-align:5.760000pt;}
.vf{vertical-align:7.680000pt;}
.vc{vertical-align:11.520000pt;}
.v13{vertical-align:12.800000pt;}
.v18{vertical-align:15.978667pt;}
.v6{vertical-align:18.560000pt;}
.v17{vertical-align:19.840000pt;}
.v2{vertical-align:21.120000pt;}
.v10{vertical-align:25.600000pt;}
.va{vertical-align:26.880000pt;}
.vb{vertical-align:31.360000pt;}
.v7{vertical-align:32.640000pt;}
.v15{vertical-align:35.840000pt;}
.v14{vertical-align:40.960000pt;}
.v16{vertical-align:42.240000pt;}
.v9{vertical-align:45.440000pt;}
.v19{vertical-align:51.840000pt;}
.v1c{vertical-align:60.800000pt;}
.v1b{vertical-align:76.800000pt;}
.ls9{letter-spacing:-0.592000pt;}
.lsa{letter-spacing:-0.480000pt;}
.ls25{letter-spacing:-0.409067pt;}
.ls13{letter-spacing:-0.320000pt;}
.ls42{letter-spacing:-0.230933pt;}
.ls27{letter-spacing:-0.229333pt;}
.ls26{letter-spacing:-0.094933pt;}
.ls28{letter-spacing:-0.047360pt;}
.ls23{letter-spacing:-0.007680pt;}
.ls5{letter-spacing:0.000000pt;}
.ls57{letter-spacing:0.007680pt;}
.lse{letter-spacing:0.011520pt;}
.ls8{letter-spacing:0.047360pt;}
.ls15{letter-spacing:0.094720pt;}
.ls3f{letter-spacing:0.094933pt;}
.ls51{letter-spacing:0.118187pt;}
.ls0{letter-spacing:0.133120pt;}
.ls2a{letter-spacing:0.136533pt;}
.ls3{letter-spacing:0.138667pt;}
.ls4{letter-spacing:0.160000pt;}
.ls3e{letter-spacing:0.183467pt;}
.ls1f{letter-spacing:0.183680pt;}
.ls19{letter-spacing:0.211200pt;}
.ls7{letter-spacing:0.230933pt;}
.ls16{letter-spacing:0.231040pt;}
.ls6{letter-spacing:0.233067pt;}
.ls41{letter-spacing:0.234667pt;}
.ls2{letter-spacing:0.265600pt;}
.ls40{letter-spacing:0.287467pt;}
.ls34{letter-spacing:0.295040pt;}
.ls24{letter-spacing:0.320000pt;}
.ls33{letter-spacing:0.330240pt;}
.ls12{letter-spacing:0.355200pt;}
.ls29{letter-spacing:0.408960pt;}
.ls5a{letter-spacing:0.426667pt;}
.ls55{letter-spacing:0.458240pt;}
.ls37{letter-spacing:0.480000pt;}
.ls39{letter-spacing:0.630400pt;}
.ls21{letter-spacing:0.632320pt;}
.ls49{letter-spacing:0.651520pt;}
.ls14{letter-spacing:0.960000pt;}
.ls2b{letter-spacing:1.056000pt;}
.ls10{letter-spacing:1.233920pt;}
.lsf{letter-spacing:1.463040pt;}
.lsc{letter-spacing:1.760000pt;}
.ls17{letter-spacing:2.080000pt;}
.ls3c{letter-spacing:2.338560pt;}
.ls53{letter-spacing:2.498560pt;}
.ls4f{letter-spacing:2.874880pt;}
.ls1e{letter-spacing:4.250880pt;}
.ls11{letter-spacing:4.640000pt;}
.ls3d{letter-spacing:5.387520pt;}
.lsb{letter-spacing:6.321920pt;}
.ls2d{letter-spacing:6.449920pt;}
.ls43{letter-spacing:9.057920pt;}
.ls30{letter-spacing:11.519360pt;}
.ls50{letter-spacing:11.531520pt;}
.ls35{letter-spacing:11.875200pt;}
.ls1a{letter-spacing:11.992320pt;}
.ls2f{letter-spacing:12.159360pt;}
.ls4e{letter-spacing:12.266027pt;}
.ls59{letter-spacing:14.672640pt;}
.ls36{letter-spacing:14.719360pt;}
.ls4a{letter-spacing:14.773120pt;}
.ls3b{letter-spacing:15.253120pt;}
.ls46{letter-spacing:15.359360pt;}
.ls2e{letter-spacing:16.997120pt;}
.ls1c{letter-spacing:18.430720pt;}
.ls44{letter-spacing:23.909120pt;}
.lsd{letter-spacing:27.109120pt;}
.ls54{letter-spacing:32.267520pt;}
.ls58{letter-spacing:40.912640pt;}
.ls38{letter-spacing:45.912320pt;}
.ls48{letter-spacing:55.512320pt;}
.ls3a{letter-spacing:62.552320pt;}
.ls52{letter-spacing:66.080000pt;}
.ls1d{letter-spacing:72.417920pt;}
.ls20{letter-spacing:126.880000pt;}
.ls22{letter-spacing:133.280000pt;}
.ls56{letter-spacing:136.608000pt;}
.ls4d{letter-spacing:137.552640pt;}
.ls32{letter-spacing:137.680640pt;}
.ls4b{letter-spacing:140.752640pt;}
.ls2c{letter-spacing:140.880640pt;}
.ls1b{letter-spacing:178.720000pt;}
.ls1{letter-spacing:205.728000pt;}
.ls18{letter-spacing:210.662400pt;}
.ls4c{letter-spacing:235.531520pt;}
.ls45{letter-spacing:340.011520pt;}
.ls47{letter-spacing:381.066667pt;}
.ls31{letter-spacing:428.331520pt;}
.ws18{word-spacing:-23.205760pt;}
.ws0{word-spacing:-14.720000pt;}
.ws14{word-spacing:-14.336000pt;}
.wse{word-spacing:-13.600000pt;}
.ws4{word-spacing:-13.545600pt;}
.ws8{word-spacing:-13.510933pt;}
.ws16{word-spacing:-13.416533pt;}
.ws17{word-spacing:-13.374933pt;}
.ws5{word-spacing:-13.327360pt;}
.ws3{word-spacing:-13.280000pt;}
.ws15{word-spacing:-13.232640pt;}
.ws13{word-spacing:-13.185067pt;}
.ws1f{word-spacing:-13.049067pt;}
.ws9{word-spacing:-12.960000pt;}
.wsf{word-spacing:-12.870933pt;}
.ws7{word-spacing:-12.688000pt;}
.ws1b{word-spacing:-11.973867pt;}
.ws1d{word-spacing:-11.921067pt;}
.wsa{word-spacing:-11.697920pt;}
.wsb{word-spacing:-11.686400pt;}
.ws1{word-spacing:-9.280000pt;}
.wsc{word-spacing:-8.651520pt;}
.ws2{word-spacing:-8.640000pt;}
.wsd{word-spacing:-8.632320pt;}
.ws11{word-spacing:-8.166400pt;}
.ws10{word-spacing:-8.071467pt;}
.ws27{word-spacing:-7.937067pt;}
.ws6{word-spacing:0.000000pt;}
.ws1e{word-spacing:10.618027pt;}
.ws26{word-spacing:10.695680pt;}
.ws1c{word-spacing:10.767360pt;}
.ws28{word-spacing:10.795520pt;}
.ws23{word-spacing:10.909440pt;}
.ws21{word-spacing:11.136427pt;}
.ws20{word-spacing:11.157760pt;}
.ws22{word-spacing:11.166720pt;}
.ws1a{word-spacing:11.203840pt;}
.ws19{word-spacing:11.285760pt;}
.ws29{word-spacing:11.335680pt;}
.ws25{word-spacing:11.495680pt;}
.ws24{word-spacing:31.548800pt;}
.ws12{word-spacing:76.581120pt;}
._1{margin-left:-1704.053760pt;}
._3{margin-left:-1461.496320pt;}
._7{margin-left:-1450.078293pt;}
._1d{margin-left:-1203.076693pt;}
._4{margin-left:-1040.837333pt;}
._5{margin-left:-1021.391360pt;}
._1c{margin-left:-289.241600pt;}
._6{margin-left:-29.440000pt;}
._31{margin-left:-23.347200pt;}
._2a{margin-left:-10.899200pt;}
._a{margin-left:-9.253973pt;}
._2d{margin-left:-5.407147pt;}
._9{margin-left:-3.915520pt;}
._8{margin-left:-2.723840pt;}
._2{margin-left:-1.000960pt;}
._0{width:1.175040pt;}
._b{width:2.713387pt;}
._c{width:3.866880pt;}
._d{width:4.922453pt;}
._21{width:5.812480pt;}
._e{width:6.709120pt;}
._17{width:8.446080pt;}
._16{width:9.463467pt;}
._12{width:10.517760pt;}
._13{width:12.217600pt;}
._2f{width:13.307733pt;}
._15{width:14.979840pt;}
._1e{width:16.067840pt;}
._14{width:17.688960pt;}
._1a{width:18.638720pt;}
._18{width:20.026240pt;}
._1f{width:21.067520pt;}
._f{width:21.991680pt;}
._19{width:23.251840pt;}
._20{width:24.382080pt;}
._1b{width:25.923840pt;}
._11{width:27.127680pt;}
._10{width:28.578560pt;}
._35{width:29.575040pt;}
._24{width:30.794880pt;}
._30{width:31.703680pt;}
._23{width:32.775040pt;}
._25{width:34.157440pt;}
._22{width:35.377920pt;}
._27{width:36.387200pt;}
._26{width:37.980800pt;}
._2e{width:39.121920pt;}
._3a{width:40.743040pt;}
._3d{width:42.847360pt;}
._3c{width:44.365440pt;}
._3e{width:49.381760pt;}
._36{width:50.517120pt;}
._28{width:55.520000pt;}
._34{width:56.593280pt;}
._3b{width:62.256640pt;}
._38{width:78.536960pt;}
._39{width:79.471147pt;}
._37{width:92.694400pt;}
._33{width:106.680320pt;}
._2b{width:142.560000pt;}
._2c{width:167.520000pt;}
._32{width:172.938667pt;}
._29{width:178.720000pt;}
.fs8{font-size:2.560000pt;}
.fs7{font-size:32.000000pt;}
.fs3{font-size:34.560000pt;}
.fs2{font-size:37.120000pt;}
.fs5{font-size:42.880000pt;}
.fs6{font-size:53.120000pt;}
.fs1{font-size:58.880000pt;}
.fs0{font-size:69.120000pt;}
.fs4{font-size:85.120000pt;}
.y0{bottom:0.000000pt;}
.y15f{bottom:3.040000pt;}
.y15e{bottom:3.360000pt;}
.y163{bottom:3.386667pt;}
.y98{bottom:5.120000pt;}
.y8{bottom:5.280000pt;}
.y9f{bottom:5.440000pt;}
.y10d{bottom:5.594667pt;}
.y7{bottom:5.600000pt;}
.y184{bottom:5.760000pt;}
.y189{bottom:5.920000pt;}
.y185{bottom:6.080000pt;}
.y170{bottom:6.400000pt;}
.y1b6{bottom:6.560000pt;}
.y1b8{bottom:6.720000pt;}
.y1cb{bottom:7.360000pt;}
.y1cf{bottom:7.520000pt;}
.y1cd{bottom:7.680000pt;}
.y1d0{bottom:7.840000pt;}
.y14e{bottom:9.440000pt;}
.y151{bottom:9.600000pt;}
.ya{bottom:9.920000pt;}
.y153{bottom:10.400000pt;}
.y9{bottom:10.560000pt;}
.y14f{bottom:10.880000pt;}
.y144{bottom:12.000000pt;}
.y148{bottom:12.160000pt;}
.y141{bottom:12.186667pt;}
.y176{bottom:12.640000pt;}
.y146{bottom:12.960000pt;}
.y96{bottom:13.920000pt;}
.y142{bottom:14.080000pt;}
.y1fc{bottom:16.026667pt;}
.y1f1{bottom:16.320000pt;}
.y1f3{bottom:16.640000pt;}
.y1fe{bottom:17.440000pt;}
.y110{bottom:17.600000pt;}
.y112{bottom:17.632000pt;}
.y10e{bottom:17.754667pt;}
.y172{bottom:18.720000pt;}
.y15c{bottom:19.360000pt;}
.y97{bottom:22.720000pt;}
.yf3{bottom:22.880000pt;}
.y182{bottom:22.906667pt;}
.ye7{bottom:23.040000pt;}
.y9e{bottom:23.200000pt;}
.ye3{bottom:23.360000pt;}
.y1ef{bottom:24.000000pt;}
.y1b4{bottom:25.320000pt;}
.y1f0{bottom:31.680000pt;}
.y14c{bottom:33.600000pt;}
.yb{bottom:35.520000pt;}
.y13f{bottom:39.066667pt;}
.y9d{bottom:40.800000pt;}
.ye2{bottom:41.146667pt;}
.y6{bottom:49.280000pt;}
.y9c{bottom:58.400000pt;}
.y224{bottom:74.880000pt;}
.y9b{bottom:76.000000pt;}
.y39{bottom:76.480000pt;}
.y113{bottom:77.600000pt;}
.y1fa{bottom:79.680000pt;}
.y88{bottom:80.480000pt;}
.ydf{bottom:81.120000pt;}
.y24f{bottom:81.280000pt;}
.yb0{bottom:82.400000pt;}
.y13d{bottom:82.720000pt;}
.y180{bottom:87.040000pt;}
.y223{bottom:92.480000pt;}
.y9a{bottom:93.600000pt;}
.y38{bottom:94.080000pt;}
.y111{bottom:95.200000pt;}
.y1f9{bottom:97.280000pt;}
.y87{bottom:98.080000pt;}
.y24e{bottom:98.880000pt;}
.yde{bottom:99.040000pt;}
.y1b2{bottom:99.200000pt;}
.yaf{bottom:100.000000pt;}
.y72{bottom:100.320000pt;}
.y13c{bottom:100.640000pt;}
.y1d4{bottom:101.120000pt;}
.y222{bottom:110.080000pt;}
.y37{bottom:111.680000pt;}
.y10f{bottom:112.832000pt;}
.y1f8{bottom:114.912000pt;}
.y24d{bottom:116.512000pt;}
.ydd{bottom:116.832000pt;}
.yae{bottom:117.632000pt;}
.y71{bottom:118.112000pt;}
.y13b{bottom:118.272000pt;}
.y17f{bottom:120.672000pt;}
.y1d3{bottom:121.632000pt;}
.y86{bottom:123.392000pt;}
.y221{bottom:127.872000pt;}
.y36{bottom:129.472000pt;}
.y10c{bottom:130.432000pt;}
.y1b1{bottom:131.712000pt;}
.y1f7{bottom:132.512000pt;}
.y24c{bottom:134.266667pt;}
.ydc{bottom:134.426667pt;}
.yad{bottom:135.386667pt;}
.y70{bottom:135.706667pt;}
.y13a{bottom:136.026667pt;}
.y1b0{bottom:140.666667pt;}
.y85{bottom:141.306667pt;}
.y1d2{bottom:142.266667pt;}
.y220{bottom:145.466667pt;}
.y35{bottom:147.066667pt;}
.y10b{bottom:148.826667pt;}
.y1f6{bottom:150.266667pt;}
.y24b{bottom:151.866667pt;}
.ydb{bottom:152.026667pt;}
.yac{bottom:152.986667pt;}
.y6f{bottom:153.306667pt;}
.y139{bottom:153.626667pt;}
.y17e{bottom:154.426667pt;}
.y84{bottom:158.906667pt;}
.y1d1{bottom:162.746667pt;}
.y1f5{bottom:163.066667pt;}
.y34{bottom:164.666667pt;}
.y1af{bottom:168.666667pt;}
.y24a{bottom:169.466667pt;}
.yda{bottom:169.626667pt;}
.yab{bottom:170.586667pt;}
.y6e{bottom:170.906667pt;}
.y138{bottom:171.226667pt;}
.y10a{bottom:172.186667pt;}
.y83{bottom:176.666667pt;}
.y21f{bottom:180.666667pt;}
.y33{bottom:182.266667pt;}
.y1ce{bottom:183.226667pt;}
.y1ae{bottom:186.266667pt;}
.y249{bottom:187.066667pt;}
.yd9{bottom:187.226667pt;}
.yaa{bottom:188.186667pt;}
.y17d{bottom:188.346667pt;}
.y6d{bottom:188.506667pt;}
.y137{bottom:188.826667pt;}
.y109{bottom:189.946667pt;}
.y1f4{bottom:192.346667pt;}
.y82{bottom:194.266667pt;}
.y21e{bottom:198.266667pt;}
.y32{bottom:199.866667pt;}
.y1ad{bottom:203.546667pt;}
.y1cc{bottom:203.866667pt;}
.y248{bottom:204.666667pt;}
.yd8{bottom:204.986667pt;}
.ya9{bottom:205.786667pt;}
.y17c{bottom:205.946667pt;}
.y6c{bottom:206.266667pt;}
.y136{bottom:206.426667pt;}
.y108{bottom:207.866667pt;}
.y81{bottom:211.866667pt;}
.y21d{bottom:216.026667pt;}
.y31{bottom:217.626667pt;}
.y1ac{bottom:221.466667pt;}
.y1f2{bottom:221.786667pt;}
.y247{bottom:222.426667pt;}
.yd7{bottom:222.586667pt;}
.ya8{bottom:223.546667pt;}
.y6b{bottom:223.866667pt;}
.y135{bottom:224.186667pt;}
.y1ca{bottom:224.346667pt;}
.y107{bottom:225.466667pt;}
.y80{bottom:229.466667pt;}
.y21c{bottom:233.626667pt;}
.y30{bottom:235.226667pt;}
.y1ab{bottom:239.226667pt;}
.y246{bottom:240.026667pt;}
.yd6{bottom:240.186667pt;}
.ya7{bottom:241.146667pt;}
.y6a{bottom:241.466667pt;}
.y134{bottom:241.786667pt;}
.y106{bottom:243.066667pt;}
.y7f{bottom:247.066667pt;}
.y1c9{bottom:250.106667pt;}
.y1ee{bottom:251.066667pt;}
.y21b{bottom:251.226667pt;}
.y2f{bottom:252.826667pt;}
.y245{bottom:257.626667pt;}
.yd5{bottom:257.786667pt;}
.ya6{bottom:258.746667pt;}
.y17b{bottom:258.906667pt;}
.y69{bottom:259.066667pt;}
.y133{bottom:259.386667pt;}
.y105{bottom:260.666667pt;}
.y7e{bottom:264.826667pt;}
.y1c8{bottom:267.706667pt;}
.y21a{bottom:268.826667pt;}
.y2e{bottom:270.426667pt;}
.y244{bottom:275.226667pt;}
.yd4{bottom:275.386667pt;}
.ya5{bottom:276.346667pt;}
.y17a{bottom:276.506667pt;}
.y68{bottom:276.666667pt;}
.y132{bottom:276.986667pt;}
.y104{bottom:278.426667pt;}
.y7d{bottom:282.426667pt;}
.y1c7{bottom:285.626667pt;}
.y219{bottom:286.106667pt;}
.y2d{bottom:288.026667pt;}
.y179{bottom:289.306667pt;}
.y243{bottom:292.826667pt;}
.yd3{bottom:293.146667pt;}
.ya4{bottom:293.626667pt;}
.y131{bottom:294.266667pt;}
.y67{bottom:294.426667pt;}
.y103{bottom:296.026667pt;}
.y7c{bottom:300.026667pt;}
.y218{bottom:300.826667pt;}
.y1c6{bottom:303.226667pt;}
.y2c{bottom:305.786667pt;}
.y242{bottom:310.586667pt;}
.yd2{bottom:310.746667pt;}
.y66{bottom:312.026667pt;}
.y102{bottom:313.626667pt;}
.y1ed{bottom:314.266667pt;}
.y178{bottom:314.586667pt;}
.y1aa{bottom:317.466667pt;}
.y7b{bottom:317.626667pt;}
.ya3{bottom:319.706667pt;}
.y1c5{bottom:320.826667pt;}
.y2b{bottom:323.386667pt;}
.y1a9{bottom:326.426667pt;}
.y241{bottom:327.866667pt;}
.yd1{bottom:328.346667pt;}
.y65{bottom:329.626667pt;}
.y130{bottom:329.946667pt;}
.y101{bottom:331.226667pt;}
.y1ec{bottom:331.866667pt;}
.y7a{bottom:335.226667pt;}
.ya2{bottom:337.346667pt;}
.y1c4{bottom:338.626667pt;}
.y177{bottom:340.066667pt;}
.y2a{bottom:341.026667pt;}
.y12f{bottom:344.386667pt;}
.y240{bottom:345.826667pt;}
.yd0{bottom:345.986667pt;}
.y64{bottom:347.266667pt;}
.y100{bottom:348.866667pt;}
.y1eb{bottom:349.826667pt;}
.y79{bottom:353.026667pt;}
.ya1{bottom:354.946667pt;}
.y1c3{bottom:356.226667pt;}
.y29{bottom:358.626667pt;}
.y23f{bottom:363.426667pt;}
.ycf{bottom:363.586667pt;}
.y63{bottom:364.866667pt;}
.y175{bottom:365.346667pt;}
.yff{bottom:366.626667pt;}
.y1ea{bottom:367.586667pt;}
.y1a8{bottom:370.306667pt;}
.y78{bottom:370.626667pt;}
.ya0{bottom:372.546667pt;}
.y1c2{bottom:373.826667pt;}
.y28{bottom:376.226667pt;}
.y23e{bottom:381.026667pt;}
.yce{bottom:381.346667pt;}
.y62{bottom:382.626667pt;}
.yfe{bottom:384.226667pt;}
.y1e9{bottom:385.186667pt;}
.y99{bottom:385.346667pt;}
.y77{bottom:388.226667pt;}
.y174{bottom:390.626667pt;}
.y1c1{bottom:391.426667pt;}
.y27{bottom:393.986667pt;}
.y1a7{bottom:396.866667pt;}
.y23d{bottom:398.786667pt;}
.ycd{bottom:398.946667pt;}
.y61{bottom:400.226667pt;}
.yfd{bottom:401.826667pt;}
.y1e8{bottom:402.786667pt;}
.y76{bottom:405.506667pt;}
.y1c0{bottom:409.026667pt;}
.y26{bottom:411.586667pt;}
.y1a6{bottom:414.466667pt;}
.y23c{bottom:416.386667pt;}
.ycc{bottom:416.546667pt;}
.y60{bottom:417.826667pt;}
.yfc{bottom:419.426667pt;}
.y75{bottom:420.386667pt;}
.y173{bottom:421.986667pt;}
.y1bf{bottom:426.786667pt;}
.y25{bottom:429.186667pt;}
.ycb{bottom:433.826667pt;}
.y23b{bottom:433.986667pt;}
.y5f{bottom:435.426667pt;}
.yfb{bottom:437.026667pt;}
.y1e7{bottom:437.986667pt;}
.y1be{bottom:444.386667pt;}
.y24{bottom:446.786667pt;}
.y23a{bottom:451.266667pt;}
.yca{bottom:451.426667pt;}
.y5e{bottom:453.026667pt;}
.y1a4{bottom:453.186667pt;}
.y171{bottom:453.346667pt;}
.yfa{bottom:454.786667pt;}
.y1e6{bottom:455.426667pt;}
.y1a5{bottom:455.746667pt;}
.y217{bottom:457.186667pt;}
.y1bd{bottom:461.666667pt;}
.y23{bottom:464.386667pt;}
.y239{bottom:468.866667pt;}
.yc9{bottom:469.506667pt;}
.y5d{bottom:470.786667pt;}
.y1a3{bottom:471.426667pt;}
.yf9{bottom:472.386667pt;}
.y1e5{bottom:473.346667pt;}
.y216{bottom:474.786667pt;}
.y1bc{bottom:476.386667pt;}
.y22{bottom:482.146667pt;}
.y238{bottom:483.746667pt;}
.y16f{bottom:484.706667pt;}
.yc8{bottom:487.106667pt;}
.y5c{bottom:488.386667pt;}
.y1a2{bottom:489.186667pt;}
.yf8{bottom:489.986667pt;}
.y1e4{bottom:490.946667pt;}
.y95{bottom:491.906667pt;}
.y215{bottom:492.386667pt;}
.y21{bottom:499.426667pt;}
.y3a{bottom:499.746667pt;}
.yc7{bottom:504.706667pt;}
.y5b{bottom:505.986667pt;}
.y1a1{bottom:506.786667pt;}
.yf7{bottom:507.586667pt;}
.y214{bottom:509.986667pt;}
.y1e3{bottom:510.626667pt;}
.y16e{bottom:512.866667pt;}
.y20{bottom:517.026667pt;}
.y1a0{bottom:521.826667pt;}
.yc6{bottom:522.306667pt;}
.y5a{bottom:523.586667pt;}
.yf6{bottom:524.866667pt;}
.y213{bottom:527.586667pt;}
.y1e2{bottom:528.386667pt;}
.y16d{bottom:530.466667pt;}
.y19f{bottom:530.786667pt;}
.y94{bottom:532.866667pt;}
.y1f{bottom:534.946667pt;}
.yc5{bottom:539.906667pt;}
.y59{bottom:541.186667pt;}
.yf5{bottom:542.626667pt;}
.y164{bottom:543.586667pt;}
.y212{bottom:545.346667pt;}
.y1e1{bottom:546.146667pt;}
.y93{bottom:550.946667pt;}
.y19e{bottom:554.306667pt;}
.yc4{bottom:557.506667pt;}
.y58{bottom:558.946667pt;}
.y162{bottom:559.586667pt;}
.y19d{bottom:561.026667pt;}
.y1e{bottom:562.653333pt;}
.y211{bottom:562.973333pt;}
.yf4{bottom:563.773333pt;}
.y16c{bottom:564.573333pt;}
.y1e0{bottom:568.413333pt;}
.y92{bottom:568.573333pt;}
.yc3{bottom:575.293333pt;}
.y161{bottom:575.613333pt;}
.y57{bottom:576.573333pt;}
.y12e{bottom:576.733333pt;}
.y1df{bottom:577.373333pt;}
.y1d{bottom:580.253333pt;}
.y16b{bottom:582.173333pt;}
.y19c{bottom:582.973333pt;}
.y91{bottom:586.173333pt;}
.y160{bottom:591.613333pt;}
.yc2{bottom:592.893333pt;}
.y56{bottom:594.173333pt;}
.y12d{bottom:594.493333pt;}
.y1c{bottom:597.853333pt;}
.yf2{bottom:598.973333pt;}
.y16a{bottom:599.773333pt;}
.y210{bottom:600.413333pt;}
.y19b{bottom:600.573333pt;}
.y90{bottom:603.773333pt;}
.y15b{bottom:607.613333pt;}
.yc1{bottom:610.493333pt;}
.y55{bottom:611.773333pt;}
.y12c{bottom:612.093333pt;}
.y1b{bottom:615.613333pt;}
.y169{bottom:617.533333pt;}
.y19a{bottom:618.173333pt;}
.y1de{bottom:619.453333pt;}
.y8f{bottom:621.373333pt;}
.y15d{bottom:623.613333pt;}
.yc0{bottom:628.093333pt;}
.y1dd{bottom:628.413333pt;}
.y54{bottom:629.373333pt;}
.y12b{bottom:629.693333pt;}
.y1a{bottom:633.213333pt;}
.yf1{bottom:634.973333pt;}
.y168{bottom:635.133333pt;}
.y199{bottom:635.933333pt;}
.y20f{bottom:637.373333pt;}
.y8e{bottom:639.133333pt;}
.y15a{bottom:644.733333pt;}
.ybf{bottom:645.373333pt;}
.y53{bottom:647.133333pt;}
.y12a{bottom:647.293333pt;}
.y237{bottom:649.213333pt;}
.y19{bottom:650.813333pt;}
.y167{bottom:652.733333pt;}
.y198{bottom:653.533333pt;}
.y8d{bottom:656.733333pt;}
.y20e{bottom:659.613333pt;}
.y159{bottom:662.653333pt;}
.y1dc{bottom:663.293333pt;}
.y129{bottom:664.573333pt;}
.y52{bottom:664.733333pt;}
.y236{bottom:666.813333pt;}
.y18{bottom:668.413333pt;}
.y20d{bottom:668.573333pt;}
.y166{bottom:670.013333pt;}
.y197{bottom:671.133333pt;}
.ybe{bottom:671.453333pt;}
.y8c{bottom:674.333333pt;}
.yf0{bottom:675.933333pt;}
.y1bb{bottom:678.013333pt;}
.y158{bottom:680.413333pt;}
.y51{bottom:682.333333pt;}
.y235{bottom:684.413333pt;}
.y165{bottom:684.893333pt;}
.y17{bottom:686.013333pt;}
.y196{bottom:688.733333pt;}
.ybd{bottom:689.053333pt;}
.y128{bottom:690.653333pt;}
.y1ba{bottom:690.813333pt;}
.y8b{bottom:691.933333pt;}
.yef{bottom:693.693333pt;}
.y157{bottom:698.013333pt;}
.y50{bottom:699.933333pt;}
.y1db{bottom:700.413333pt;}
.y234{bottom:702.013333pt;}
.y16{bottom:703.773333pt;}
.y195{bottom:706.333333pt;}
.ybc{bottom:706.653333pt;}
.y127{bottom:708.253333pt;}
.y8a{bottom:709.533333pt;}
.y1b9{bottom:710.173333pt;}
.y20c{bottom:710.653333pt;}
.yee{bottom:711.613333pt;}
.y156{bottom:715.613333pt;}
.y4f{bottom:717.533333pt;}
.y20b{bottom:719.613333pt;}
.y1da{bottom:719.773333pt;}
.y15{bottom:721.373333pt;}
.y194{bottom:724.093333pt;}
.ybb{bottom:724.253333pt;}
.y126{bottom:725.853333pt;}
.y89{bottom:726.973333pt;}
.y155{bottom:728.413333pt;}
.yed{bottom:729.213333pt;}
.y1b7{bottom:729.693333pt;}
.y4e{bottom:735.293333pt;}
.y14{bottom:738.973333pt;}
.yba{bottom:739.133333pt;}
.y193{bottom:741.693333pt;}
.y125{bottom:741.853333pt;}
.y123{bottom:745.053333pt;}
.yb9{bottom:745.853333pt;}
.yec{bottom:746.813333pt;}
.y1b5{bottom:749.213333pt;}
.y124{bottom:750.333333pt;}
.y154{bottom:751.613333pt;}
.y4d{bottom:752.893333pt;}
.y20a{bottom:754.493333pt;}
.y233{bottom:755.613333pt;}
.y13{bottom:756.573333pt;}
.y1d9{bottom:757.533333pt;}
.y192{bottom:759.293333pt;}
.yeb{bottom:759.613333pt;}
.y122{bottom:762.973333pt;}
.y1b3{bottom:768.573333pt;}
.yb8{bottom:769.053333pt;}
.y4c{bottom:770.493333pt;}
.y209{bottom:772.093333pt;}
.y152{bottom:774.013333pt;}
.y12{bottom:774.333333pt;}
.y232{bottom:774.973333pt;}
.y1d8{bottom:775.133333pt;}
.y191{bottom:776.893333pt;}
.y121{bottom:780.733333pt;}
.yb7{bottom:786.693333pt;}
.y4b{bottom:788.133333pt;}
.y1d7{bottom:790.213333pt;}
.y208{bottom:791.493333pt;}
.y231{bottom:792.933333pt;}
.y190{bottom:794.533333pt;}
.yea{bottom:795.653333pt;}
.y150{bottom:797.253333pt;}
.y120{bottom:798.373333pt;}
.y1d6{bottom:799.173333pt;}
.y11{bottom:799.653333pt;}
.yb6{bottom:801.573333pt;}
.y251{bottom:805.413333pt;}
.y4a{bottom:805.733333pt;}
.y207{bottom:806.373333pt;}
.yb5{bottom:808.293333pt;}
.y230{bottom:810.533333pt;}
.y18f{bottom:812.293333pt;}
.y10{bottom:812.453333pt;}
.y206{bottom:815.333333pt;}
.y11f{bottom:815.973333pt;}
.y14b{bottom:819.653333pt;}
.y1d5{bottom:822.693333pt;}
.y49{bottom:823.493333pt;}
.y22f{bottom:829.733333pt;}
.y18e{bottom:829.893333pt;}
.yb4{bottom:831.493333pt;}
.ye9{bottom:831.653333pt;}
.y11e{bottom:833.573333pt;}
.yf{bottom:834.693333pt;}
.y205{bottom:839.173333pt;}
.y48{bottom:841.093333pt;}
.y18d{bottom:842.693333pt;}
.y14d{bottom:843.813333pt;}
.y204{bottom:848.133333pt;}
.yb3{bottom:849.093333pt;}
.y11d{bottom:850.373333pt;}
.y22e{bottom:851.973333pt;}
.y11c{bottom:856.773333pt;}
.y47{bottom:858.693333pt;}
.y22d{bottom:860.933333pt;}
.y18c{bottom:861.573333pt;}
.yb2{bottom:863.973333pt;}
.ye{bottom:865.893333pt;}
.ye8{bottom:867.493333pt;}
.yb1{bottom:870.693333pt;}
.y14a{bottom:871.333333pt;}
.y203{bottom:875.333333pt;}
.y46{bottom:876.293333pt;}
.y11b{bottom:878.053333pt;}
.y18b{bottom:880.453333pt;}
.yd{bottom:884.133333pt;}
.y149{bottom:888.933333pt;}
.y202{bottom:892.933333pt;}
.y11a{bottom:893.093333pt;}
.y45{bottom:893.893333pt;}
.y18a{bottom:899.333333pt;}
.y119{bottom:899.813333pt;}
.y147{bottom:902.053333pt;}
.y22c{bottom:903.013333pt;}
.ye6{bottom:903.493333pt;}
.y201{bottom:910.533333pt;}
.y44{bottom:911.653333pt;}
.y22b{bottom:911.973333pt;}
.yc{bottom:912.293333pt;}
.y188{bottom:918.213333pt;}
.y118{bottom:921.893333pt;}
.y145{bottom:927.013333pt;}
.y200{bottom:928.133333pt;}
.y43{bottom:929.253333pt;}
.y187{bottom:936.933333pt;}
.y5{bottom:938.373333pt;}
.ye5{bottom:939.333333pt;}
.y117{bottom:939.653333pt;}
.y1ff{bottom:940.933333pt;}
.y250{bottom:946.533333pt;}
.y42{bottom:946.853333pt;}
.y22a{bottom:947.013333pt;}
.y143{bottom:952.933333pt;}
.y116{bottom:954.373333pt;}
.y186{bottom:955.813333pt;}
.y115{bottom:961.093333pt;}
.y74{bottom:964.133333pt;}
.y41{bottom:964.453333pt;}
.y229{bottom:964.613333pt;}
.y4{bottom:968.133333pt;}
.y1fd{bottom:970.213333pt;}
.y183{bottom:974.693333pt;}
.ye1{bottom:975.333333pt;}
.y13e{bottom:977.733333pt;}
.y228{bottom:981.253333pt;}
.y73{bottom:981.733333pt;}
.y40{bottom:982.053333pt;}
.y227{bottom:990.213333pt;}
.y181{bottom:993.573333pt;}
.y3{bottom:995.653333pt;}
.y3f{bottom:999.813333pt;}
.y1fb{bottom:1000.453333pt;}
.y140{bottom:1004.613333pt;}
.ye4{bottom:1011.200000pt;}
.y226{bottom:1015.680000pt;}
.y114{bottom:1017.120000pt;}
.y3e{bottom:1017.440000pt;}
.y2{bottom:1023.040000pt;}
.y225{bottom:1024.640000pt;}
.ye0{bottom:1034.720000pt;}
.y3d{bottom:1035.040000pt;}
.y1{bottom:1051.360000pt;}
.y3c{bottom:1060.960000pt;}
.y3b{bottom:1080.320000pt;}
.h1e{height:2.512500pt;}
.h32{height:15.360000pt;}
.h33{height:15.392000pt;}
.h1d{height:17.600000pt;}
.h1f{height:17.632000pt;}
.h18{height:17.760000pt;}
.h39{height:18.080000pt;}
.h38{height:18.240000pt;}
.h3e{height:18.720000pt;}
.h5{height:18.880000pt;}
.h3f{height:19.840000pt;}
.h41{height:19.872000pt;}
.h40{height:20.000000pt;}
.h2c{height:21.600000pt;}
.h2e{height:21.760000pt;}
.h34{height:22.240000pt;}
.h30{height:22.560000pt;}
.h2f{height:22.592000pt;}
.h2d{height:23.360000pt;}
.h28{height:24.160000pt;}
.h2a{height:24.320000pt;}
.h26{height:24.352000pt;}
.h36{height:24.640000pt;}
.h37{height:24.672000pt;}
.h29{height:25.120000pt;}
.h27{height:26.240000pt;}
.h47{height:28.480000pt;}
.h45{height:28.512000pt;}
.h44{height:28.640000pt;}
.h46{height:29.600000pt;}
.h35{height:30.720000pt;}
.h31{height:31.360000pt;}
.he{height:32.250000pt;}
.hc{height:33.918750pt;}
.h7{height:34.830000pt;}
.h11{height:35.200000pt;}
.h19{height:35.232000pt;}
.h1a{height:35.360000pt;}
.h1c{height:35.392000pt;}
.h6{height:37.410000pt;}
.h3d{height:37.472000pt;}
.h4a{height:38.128125pt;}
.h10{height:41.543750pt;}
.hb{height:43.215000pt;}
.h2b{height:45.760000pt;}
.h25{height:51.232000pt;}
.h1b{height:52.108438pt;}
.hd{height:52.134375pt;}
.h13{height:52.478750pt;}
.hf{height:53.535000pt;}
.h17{height:53.632000pt;}
.h3a{height:54.598989pt;}
.h43{height:57.440000pt;}
.h4{height:57.787500pt;}
.h8{height:58.563750pt;}
.h3{height:59.340000pt;}
.h9{height:60.057813pt;}
.h2{height:69.660000pt;}
.h23{height:74.004375pt;}
.h15{height:79.014375pt;}
.ha{height:85.785000pt;}
.h12{height:105.760000pt;}
.h20{height:105.902812pt;}
.h3b{height:106.751042pt;}
.h22{height:107.822812pt;}
.h14{height:109.236875pt;}
.h24{height:118.702813pt;}
.h21{height:131.502813pt;}
.h16{height:132.782812pt;}
.h49{height:141.742813pt;}
.h3c{height:146.862812pt;}
.h42{height:148.782813pt;}
.h48{height:182.702813pt;}
.h1{height:1122.666667pt;}
.h0{height:1122.720000pt;}
.w3e{width:3.840000pt;}
.w3b{width:4.480000pt;}
.w26{width:22.560000pt;}
.w27{width:23.360000pt;}
.w25{width:23.520000pt;}
.w41{width:25.600000pt;}
.w42{width:27.520000pt;}
.w43{width:27.680000pt;}
.wa{width:28.000000pt;}
.w2a{width:35.840000pt;}
.w34{width:37.600000pt;}
.w48{width:38.560000pt;}
.w40{width:39.200000pt;}
.w14{width:40.960000pt;}
.wd{width:42.560000pt;}
.wb{width:46.272000pt;}
.we{width:46.560000pt;}
.w18{width:48.032000pt;}
.w4a{width:48.192000pt;}
.w3{width:48.832000pt;}
.w1f{width:49.760000pt;}
.w20{width:49.920000pt;}
.w45{width:50.432000pt;}
.w4e{width:50.560000pt;}
.w8{width:50.592000pt;}
.w1b{width:51.520000pt;}
.w30{width:52.192000pt;}
.w6{width:54.720000pt;}
.w7{width:54.880000pt;}
.w5{width:54.912000pt;}
.w39{width:56.032000pt;}
.w49{width:57.120000pt;}
.w38{width:57.280000pt;}
.w2c{width:57.440000pt;}
.w36{width:60.960000pt;}
.w2f{width:61.600000pt;}
.w2e{width:62.112000pt;}
.w32{width:63.360000pt;}
.w24{width:63.680000pt;}
.w23{width:63.712000pt;}
.w4f{width:65.760000pt;}
.w28{width:66.592000pt;}
.w44{width:67.360000pt;}
.w22{width:70.880000pt;}
.w31{width:71.712000pt;}
.w10{width:72.512000pt;}
.w47{width:73.632000pt;}
.w46{width:74.880000pt;}
.w17{width:75.200000pt;}
.w9{width:76.800000pt;}
.wf{width:80.960000pt;}
.w21{width:81.152000pt;}
.w11{width:83.392000pt;}
.w12{width:84.800000pt;}
.w13{width:87.872000pt;}
.w2d{width:92.480000pt;}
.w1e{width:93.792000pt;}
.w2b{width:103.232000pt;}
.w1a{width:103.680000pt;}
.w50{width:103.872000pt;}
.w51{width:104.000000pt;}
.w16{width:104.032000pt;}
.w1c{width:107.072000pt;}
.w37{width:110.592000pt;}
.w35{width:110.752000pt;}
.w29{width:111.072000pt;}
.w15{width:113.472000pt;}
.w33{width:119.072000pt;}
.w19{width:145.626667pt;}
.w3a{width:153.466667pt;}
.wc{width:154.106667pt;}
.w4d{width:166.306667pt;}
.w1d{width:194.746667pt;}
.w3d{width:218.266667pt;}
.w4b{width:244.386667pt;}
.w4c{width:544.733333pt;}
.w3f{width:571.493333pt;}
.w3c{width:635.653333pt;}
.w4{width:639.973333pt;}
.w2{width:793.279988pt;}
.w0{width:793.280000pt;}
.w1{width:793.333333pt;}
.x48{left:-1.280000pt;}
.x0{left:0.000000pt;}
.x8{left:2.560000pt;}
.x3{left:7.200000pt;}
.x1{left:48.159988pt;}
.x2{left:55.200000pt;}
.x73{left:57.599988pt;}
.xd{left:67.199988pt;}
.x65{left:68.640000pt;}
.x10{left:72.639988pt;}
.x9{left:74.399988pt;}
.x1b{left:77.280000pt;}
.x76{left:81.311988pt;}
.x43{left:87.231988pt;}
.x50{left:90.111988pt;}
.x62{left:94.431988pt;}
.x7e{left:96.031988pt;}
.x2a{left:97.312000pt;}
.x4{left:104.672000pt;}
.x7a{left:107.551988pt;}
.x5e{left:109.471988pt;}
.x52{left:111.551988pt;}
.x63{left:117.471988pt;}
.x3c{left:120.992000pt;}
.x1c{left:124.352000pt;}
.x30{left:130.432000pt;}
.x20{left:131.392000pt;}
.x64{left:133.626655pt;}
.x35{left:139.866667pt;}
.x78{left:142.426655pt;}
.x46{left:147.706643pt;}
.x53{left:149.146655pt;}
.x47{left:153.306667pt;}
.x32{left:154.586667pt;}
.x2d{left:156.506667pt;}
.x49{left:157.626667pt;}
.x14{left:159.546667pt;}
.x23{left:161.466667pt;}
.x4a{left:164.986655pt;}
.xc{left:167.226655pt;}
.x45{left:170.746655pt;}
.x70{left:173.946655pt;}
.xb{left:176.826655pt;}
.x33{left:177.946667pt;}
.x3d{left:184.986667pt;}
.x5d{left:188.506655pt;}
.x31{left:201.946667pt;}
.x1f{left:205.946667pt;}
.x7b{left:210.586655pt;}
.x4b{left:212.506643pt;}
.x15{left:215.066667pt;}
.x21{left:216.186667pt;}
.x4c{left:218.106667pt;}
.x44{left:219.386655pt;}
.x4d{left:221.786667pt;}
.x72{left:224.666655pt;}
.x4e{left:228.666655pt;}
.x71{left:233.626655pt;}
.x66{left:235.586667pt;}
.x5f{left:238.626643pt;}
.x2b{left:243.586667pt;}
.x60{left:248.546667pt;}
.x2e{left:250.946667pt;}
.x4f{left:252.226655pt;}
.xa{left:254.306655pt;}
.x61{left:256.066655pt;}
.x54{left:258.626655pt;}
.x16{left:266.306667pt;}
.x1d{left:279.266667pt;}
.x67{left:286.786667pt;}
.x36{left:288.226667pt;}
.x2c{left:295.746667pt;}
.x7{left:297.021333pt;}
.x51{left:298.786655pt;}
.x2f{left:301.346667pt;}
.x22{left:304.066667pt;}
.x74{left:305.346655pt;}
.x11{left:307.581333pt;}
.x1e{left:322.466667pt;}
.x77{left:326.946655pt;}
.x3e{left:342.946667pt;}
.x79{left:349.826655pt;}
.x75{left:350.946655pt;}
.x6{left:369.341333pt;}
.x5{left:381.341333pt;}
.x37{left:392.253333pt;}
.x1a{left:396.413322pt;}
.xe{left:420.413322pt;}
.xf{left:439.613322pt;}
.x7c{left:444.413322pt;}
.x38{left:450.333333pt;}
.x3f{left:454.333333pt;}
.x6f{left:455.293322pt;}
.x27{left:461.693322pt;}
.x7d{left:468.413322pt;}
.x34{left:476.893322pt;}
.x68{left:478.653333pt;}
.x55{left:487.293333pt;}
.x59{left:495.293322pt;}
.x5a{left:496.573333pt;}
.x24{left:498.173322pt;}
.x19{left:503.133322pt;}
.x18{left:505.853322pt;}
.x13{left:507.613322pt;}
.x29{left:511.613322pt;}
.x40{left:516.093333pt;}
.x6a{left:528.733322pt;}
.x17{left:531.133322pt;}
.x39{left:543.453333pt;}
.x26{left:561.573322pt;}
.x5b{left:570.853333pt;}
.x69{left:583.173333pt;}
.x3a{left:606.373333pt;}
.x56{left:608.293333pt;}
.x5c{left:610.053333pt;}
.x6b{left:623.493322pt;}
.x41{left:627.333333pt;}
.x3b{left:668.613333pt;}
.x57{left:676.293333pt;}
.x42{left:685.253333pt;}
.x25{left:686.693322pt;}
.x12{left:690.213322pt;}
.x6d{left:699.333322pt;}
.x6c{left:713.759988pt;}
.x6e{left:722.239988pt;}
.x58{left:729.919988pt;}
.x28{left:731.999988pt;}
}




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