
    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_639fbb94af9a3353dbe3b8de.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_c67506b253e9126e02a4e796.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_20cfc4b8b1647374440ced43.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.914062;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_27ecb649bf9beb584b25b551.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_6ba6a6abb19328000f9eb113.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_a87a9955649afb7537f06075.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.914062;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_4d988fd3ab8967d2551acc02.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.942383;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_4579bff5bdad0c7d4e6fe997.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.740234;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_3c1308429bf3b856bb22dee0.woff2')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_6193fc93719873dbca485474.woff2')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_04b87441b9dc724eba86462a.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;}
@font-face{font-family:ffc;src:url('chunks/assets/font_01fe042016f6524a161d241a.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.942383;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_16afdcb6f5097661106d3346.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.978027;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);}
.v15{vertical-align:-111.600000px;}
.ve{vertical-align:-79.920000px;}
.v2{vertical-align:-20.880000px;}
.vd{vertical-align:-12.240000px;}
.vc{vertical-align:-5.040000px;}
.v9{vertical-align:-3.600000px;}
.va{vertical-align:-1.440000px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:2.160000px;}
.v4{vertical-align:6.480000px;}
.vb{vertical-align:9.360000px;}
.vf{vertical-align:12.240000px;}
.v10{vertical-align:22.440000px;}
.v1{vertical-align:23.760000px;}
.v13{vertical-align:30.240000px;}
.v11{vertical-align:34.560000px;}
.v16{vertical-align:36.720000px;}
.v6{vertical-align:40.320000px;}
.v5{vertical-align:46.080000px;}
.v14{vertical-align:54.720000px;}
.v8{vertical-align:59.040000px;}
.v12{vertical-align:76.320000px;}
.v7{vertical-align:86.400000px;}
.ls9{letter-spacing:-0.460200px;}
.ls37{letter-spacing:-0.259800px;}
.ls50{letter-spacing:-0.242400px;}
.ls4b{letter-spacing:-0.223800px;}
.ls8{letter-spacing:-0.206400px;}
.ls4c{letter-spacing:-0.172200px;}
.ls4f{letter-spacing:-0.103800px;}
.ls51{letter-spacing:-0.089400px;}
.ls7{letter-spacing:-0.053280px;}
.ls5{letter-spacing:-0.018720px;}
.ls4e{letter-spacing:-0.015120px;}
.ls4{letter-spacing:0.000000px;}
.ls3b{letter-spacing:0.012960px;}
.ls3a{letter-spacing:0.053280px;}
.ls52{letter-spacing:0.144000px;}
.ls38{letter-spacing:0.146400px;}
.ls4d{letter-spacing:0.154800px;}
.ls1{letter-spacing:0.180000px;}
.ls2{letter-spacing:0.206400px;}
.ls16{letter-spacing:0.257760px;}
.ls6{letter-spacing:0.259800px;}
.ls49{letter-spacing:0.259920px;}
.ls56{letter-spacing:0.298800px;}
.ls3c{letter-spacing:0.301200px;}
.ls40{letter-spacing:0.306000px;}
.ls48{letter-spacing:0.309000px;}
.ls39{letter-spacing:0.320400px;}
.lsa{letter-spacing:0.360000px;}
.ls1a{letter-spacing:0.399600px;}
.ls1b{letter-spacing:0.437760px;}
.ls47{letter-spacing:0.460200px;}
.ls14{letter-spacing:0.517680px;}
.ls32{letter-spacing:0.718560px;}
.ls33{letter-spacing:0.900000px;}
.lsd{letter-spacing:0.977760px;}
.ls1d{letter-spacing:1.119600px;}
.ls36{letter-spacing:1.157760px;}
.ls3f{letter-spacing:1.263600px;}
.ls2a{letter-spacing:1.327680px;}
.lsc{letter-spacing:1.537200px;}
.ls21{letter-spacing:1.584000px;}
.ls2c{letter-spacing:1.811520px;}
.ls23{letter-spacing:1.814400px;}
.ls34{letter-spacing:2.039040px;}
.ls44{letter-spacing:2.095920px;}
.ls3e{letter-spacing:2.149920px;}
.ls35{letter-spacing:2.268000px;}
.ls1f{letter-spacing:2.340000px;}
.ls42{letter-spacing:2.489040px;}
.ls2b{letter-spacing:2.869920px;}
.ls41{letter-spacing:3.077280px;}
.ls4a{letter-spacing:3.180960px;}
.ls1c{letter-spacing:3.342240px;}
.ls26{letter-spacing:3.360960px;}
.ls3d{letter-spacing:3.479040px;}
.ls17{letter-spacing:3.828960px;}
.ls29{letter-spacing:3.879360px;}
.ls27{letter-spacing:3.900960px;}
.ls25{letter-spacing:3.918240px;}
.ls19{letter-spacing:4.062240px;}
.ls20{letter-spacing:5.400000px;}
.ls3{letter-spacing:7.866720px;}
.ls1e{letter-spacing:9.540000px;}
.ls28{letter-spacing:10.069200px;}
.ls22{letter-spacing:11.466720px;}
.ls45{letter-spacing:12.152880px;}
.ls11{letter-spacing:12.959280px;}
.ls54{letter-spacing:13.135680px;}
.ls2f{letter-spacing:13.315680px;}
.ls18{letter-spacing:14.079600px;}
.lsb{letter-spacing:15.066720px;}
.ls57{letter-spacing:16.506720px;}
.ls30{letter-spacing:16.559280px;}
.lse{letter-spacing:16.959600px;}
.ls24{letter-spacing:17.139600px;}
.lsf{letter-spacing:17.279280px;}
.ls43{letter-spacing:19.637280px;}
.ls2e{letter-spacing:22.319280px;}
.ls13{letter-spacing:23.772960px;}
.ls0{letter-spacing:31.626720px;}
.ls2d{letter-spacing:46.026720px;}
.ls10{letter-spacing:47.859600px;}
.ls12{letter-spacing:53.643600px;}
.ls46{letter-spacing:59.893200px;}
.ls15{letter-spacing:78.852240px;}
.ls55{letter-spacing:93.279600px;}
.ls31{letter-spacing:93.598560px;}
.ls53{letter-spacing:319.980000px;}
.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;}
}
.ws10{word-spacing:-23.216400px;}
.ws0{word-spacing:-16.560000px;}
.ws18{word-spacing:-15.400200px;}
.ws6{word-spacing:-15.300000px;}
.ws7{word-spacing:-15.146400px;}
.wsf{word-spacing:-14.993280px;}
.ws3{word-spacing:-14.940000px;}
.ws4{word-spacing:-14.886720px;}
.ws5{word-spacing:-14.733600px;}
.ws9{word-spacing:-14.680200px;}
.wsc{word-spacing:-13.467600px;}
.ws19{word-spacing:-13.456200px;}
.ws1c{word-spacing:-13.302000px;}
.wsb{word-spacing:-13.293600px;}
.ws21{word-spacing:-13.291200px;}
.ws14{word-spacing:-13.160160px;}
.wsa{word-spacing:-13.147200px;}
.ws1d{word-spacing:-13.132080px;}
.wsd{word-spacing:-13.093920px;}
.ws1e{word-spacing:-13.043400px;}
.ws1b{word-spacing:-12.975000px;}
.ws1a{word-spacing:-12.923400px;}
.ws1f{word-spacing:-12.904800px;}
.ws1{word-spacing:-10.440000px;}
.ws2{word-spacing:-9.720000px;}
.ws15{word-spacing:-9.488400px;}
.wse{word-spacing:-9.187200px;}
.ws8{word-spacing:0.000000px;}
.ws25{word-spacing:2.842320px;}
.ws11{word-spacing:2.866320px;}
.ws27{word-spacing:8.938560px;}
.ws13{word-spacing:9.630720px;}
.ws20{word-spacing:9.899040px;}
.ws22{word-spacing:46.602000px;}
.ws24{word-spacing:50.315760px;}
.ws17{word-spacing:59.706000px;}
.ws16{word-spacing:91.852560px;}
.ws23{word-spacing:112.122000px;}
.ws26{word-spacing:356.333760px;}
.ws12{word-spacing:379.193760px;}
._2{margin-left:-2128.661760px;}
._3{margin-left:-1629.524160px;}
._4{margin-left:-1171.774080px;}
._5{margin-left:-1166.086080px;}
._6{margin-left:-31.680000px;}
._2b{margin-left:-15.225840px;}
._2a{margin-left:-12.471840px;}
._28{margin-left:-10.059360px;}
._29{margin-left:-8.701680px;}
._32{margin-left:-6.811200px;}
._10{margin-left:-3.405360px;}
._b{margin-left:-2.220720px;}
._1{margin-left:-1.010880px;}
._0{width:1.158240px;}
._7{width:2.570880px;}
._8{width:3.705360px;}
._11{width:4.900320px;}
._a{width:6.254400px;}
._9{width:7.311120px;}
._13{width:8.480880px;}
._c{width:9.800640px;}
._e{width:11.690160px;}
._1c{width:13.266720px;}
._20{width:14.508480px;}
._14{width:16.732800px;}
._22{width:17.826240px;}
._2c{width:18.943920px;}
._1f{width:20.713920px;}
._f{width:21.812400px;}
._12{width:23.545440px;}
._15{width:24.621120px;}
._1b{width:25.830480px;}
._16{width:27.456720px;}
._2e{width:28.917600px;}
._1e{width:30.066000px;}
._1d{width:31.310880px;}
._1a{width:33.764400px;}
._19{width:34.840080px;}
._3d{width:36.807120px;}
._33{width:37.887840px;}
._34{width:39.202560px;}
._d{width:42.907680px;}
._3e{width:44.856960px;}
._18{width:46.851840px;}
._17{width:47.867760px;}
._40{width:50.115840px;}
._2d{width:53.320080px;}
._3c{width:65.294880px;}
._30{width:71.233920px;}
._39{width:79.807680px;}
._38{width:80.850960px;}
._37{width:82.170000px;}
._26{width:83.934720px;}
._3f{width:85.852320px;}
._25{width:87.406080px;}
._27{width:89.626320px;}
._35{width:94.935840px;}
._36{width:95.960400px;}
._31{width:97.528320px;}
._24{width:107.050320px;}
._3a{width:110.580720px;}
._3b{width:112.079760px;}
._21{width:150.908400px;}
._2f{width:152.328240px;}
._23{width:197.941680px;}
.fc2{color:transparent;}
.fc1{color:rgb(0,112,192);}
.fc0{color:rgb(0,0,0);}
.fs6{font-size:38.880000px;}
.fs5{font-size:41.760000px;}
.fs7{font-size:48.240000px;}
.fs4{font-size:59.760000px;}
.fs3{font-size:66.240000px;}
.fs2{font-size:77.760000px;}
.fs1{font-size:84.240000px;}
.fs0{font-size:95.760000px;}
.y0{bottom:0.000000px;}
.ydf{bottom:2.520000px;}
.y7{bottom:5.760000px;}
.yc6{bottom:5.940000px;}
.yc9{bottom:6.120000px;}
.y9{bottom:10.980000px;}
.y8{bottom:11.700000px;}
.y107{bottom:15.660000px;}
.y116{bottom:15.840000px;}
.yd0{bottom:16.020000px;}
.yca{bottom:16.200000px;}
.y111{bottom:16.560000px;}
.y10a{bottom:25.560000px;}
.y108{bottom:25.605000px;}
.y113{bottom:25.740000px;}
.ycf{bottom:26.100000px;}
.yc8{bottom:26.280000px;}
.ycc{bottom:26.325000px;}
.ya{bottom:39.780000px;}
.y6{bottom:55.440000px;}
.y178{bottom:82.080000px;}
.y39{bottom:87.840000px;}
.ya2{bottom:93.600000px;}
.y15d{bottom:95.580000px;}
.yd9{bottom:96.840000px;}
.y6c{bottom:100.080000px;}
.y177{bottom:101.880000px;}
.y38{bottom:107.640000px;}
.y12e{bottom:111.420000px;}
.ya1{bottom:113.760000px;}
.y15c{bottom:115.380000px;}
.yd8{bottom:116.820000px;}
.y6b{bottom:119.880000px;}
.y176{bottom:121.680000px;}
.y37{bottom:127.620000px;}
.yfd{bottom:128.520000px;}
.y12d{bottom:131.220000px;}
.y149{bottom:132.120000px;}
.ya0{bottom:133.920000px;}
.y15b{bottom:135.360000px;}
.yd7{bottom:136.800000px;}
.y175{bottom:141.660000px;}
.y36{bottom:147.420000px;}
.yfc{bottom:148.500000px;}
.y6a{bottom:148.860000px;}
.y12c{bottom:151.020000px;}
.y148{bottom:151.950000px;}
.y9f{bottom:154.110000px;}
.y15a{bottom:155.550000px;}
.yd6{bottom:156.630000px;}
.y174{bottom:161.490000px;}
.y35{bottom:167.250000px;}
.yfb{bottom:168.870000px;}
.y69{bottom:169.050000px;}
.y12b{bottom:170.850000px;}
.y147{bottom:171.750000px;}
.y9e{bottom:173.910000px;}
.y159{bottom:175.350000px;}
.yd5{bottom:176.430000px;}
.y173{bottom:181.290000px;}
.y34{bottom:187.050000px;}
.yfa{bottom:188.850000px;}
.y68{bottom:189.210000px;}
.y1be{bottom:190.290000px;}
.y12a{bottom:190.650000px;}
.y146{bottom:191.550000px;}
.y9d{bottom:193.890000px;}
.y158{bottom:195.330000px;}
.yd4{bottom:196.230000px;}
.y172{bottom:201.090000px;}
.y33{bottom:206.850000px;}
.yf9{bottom:208.650000px;}
.y67{bottom:209.190000px;}
.y19e{bottom:210.270000px;}
.y129{bottom:210.630000px;}
.y145{bottom:211.350000px;}
.y9c{bottom:214.230000px;}
.y157{bottom:215.130000px;}
.yd3{bottom:216.030000px;}
.y171{bottom:220.890000px;}
.y32{bottom:226.830000px;}
.yf8{bottom:228.630000px;}
.y66{bottom:229.350000px;}
.y19d{bottom:230.070000px;}
.y128{bottom:230.430000px;}
.y144{bottom:231.330000px;}
.y9b{bottom:234.390000px;}
.y156{bottom:234.930000px;}
.yd2{bottom:236.010000px;}
.y170{bottom:240.870000px;}
.y31{bottom:246.630000px;}
.yf7{bottom:248.610000px;}
.y19c{bottom:249.870000px;}
.y127{bottom:250.230000px;}
.y1bd{bottom:250.410000px;}
.yd1{bottom:250.770000px;}
.y143{bottom:251.130000px;}
.y155{bottom:251.490000px;}
.y9a{bottom:254.550000px;}
.y16f{bottom:260.670000px;}
.y30{bottom:266.430000px;}
.yf6{bottom:268.770000px;}
.y65{bottom:269.670000px;}
.y126{bottom:270.030000px;}
.y1bc{bottom:270.210000px;}
.y142{bottom:270.930000px;}
.y99{bottom:274.350000px;}
.y16e{bottom:280.470000px;}
.y2f{bottom:286.230000px;}
.yf5{bottom:288.750000px;}
.y64{bottom:289.470000px;}
.y125{bottom:289.830000px;}
.y1bb{bottom:290.010000px;}
.y141{bottom:290.730000px;}
.yce{bottom:291.990000px;}
.y16d{bottom:300.270000px;}
.y98{bottom:303.150000px;}
.y2e{bottom:306.030000px;}
.yf4{bottom:308.730000px;}
.y63{bottom:309.270000px;}
.y19b{bottom:309.450000px;}
.y124{bottom:309.810000px;}
.y140{bottom:310.530000px;}
.y16c{bottom:320.070000px;}
.y97{bottom:322.950000px;}
.y2d{bottom:326.010000px;}
.y62{bottom:329.250000px;}
.y123{bottom:329.610000px;}
.y13f{bottom:330.510000px;}
.yf3{bottom:331.050000px;}
.ycd{bottom:333.030000px;}
.y16b{bottom:340.050000px;}
.y96{bottom:342.750000px;}
.y2c{bottom:345.810000px;}
.y61{bottom:349.050000px;}
.y122{bottom:349.410000px;}
.y1ba{bottom:349.590000px;}
.y13e{bottom:350.310000px;}
.yf2{bottom:351.030000px;}
.y16a{bottom:359.850000px;}
.y95{bottom:362.730000px;}
.y2b{bottom:365.610000px;}
.y60{bottom:368.850000px;}
.y121{bottom:369.390000px;}
.yf1{bottom:370.830000px;}
.ycb{bottom:374.250000px;}
.y13d{bottom:379.110000px;}
.y120{bottom:379.470000px;}
.y169{bottom:379.650000px;}
.y94{bottom:382.530000px;}
.y2a{bottom:385.410000px;}
.y5f{bottom:388.650000px;}
.y1b9{bottom:389.190000px;}
.yf0{bottom:390.630000px;}
.y13c{bottom:398.910000px;}
.y168{bottom:399.450000px;}
.y93{bottom:402.375000px;}
.y29{bottom:405.255000px;}
.y5e{bottom:408.675000px;}
.y1b8{bottom:409.035000px;}
.y11f{bottom:409.395000px;}
.yef{bottom:410.475000px;}
.yc7{bottom:415.515000px;}
.y167{bottom:416.055000px;}
.y13b{bottom:418.755000px;}
.y92{bottom:422.175000px;}
.y28{bottom:425.235000px;}
.y19a{bottom:428.475000px;}
.y1b7{bottom:428.835000px;}
.y5d{bottom:429.015000px;}
.y11e{bottom:429.195000px;}
.yee{bottom:430.455000px;}
.y13a{bottom:438.735000px;}
.y91{bottom:441.975000px;}
.y27{bottom:445.035000px;}
.y11d{bottom:445.935000px;}
.y199{bottom:448.275000px;}
.y1b6{bottom:448.815000px;}
.yed{bottom:450.435000px;}
.y5c{bottom:450.975000px;}
.y11b{bottom:454.935000px;}
.yc5{bottom:456.735000px;}
.y139{bottom:458.535000px;}
.y90{bottom:461.955000px;}
.y26{bottom:464.835000px;}
.y11a{bottom:465.015000px;}
.y198{bottom:468.075000px;}
.y1b5{bottom:468.615000px;}
.yec{bottom:470.415000px;}
.y5b{bottom:471.135000px;}
.y138{bottom:478.335000px;}
.y8f{bottom:481.755000px;}
.yc4{bottom:483.555000px;}
.y25{bottom:484.635000px;}
.y11c{bottom:487.335000px;}
.y197{bottom:487.875000px;}
.y1b4{bottom:488.415000px;}
.yeb{bottom:490.575000px;}
.y137{bottom:498.135000px;}
.y8e{bottom:501.555000px;}
.y119{bottom:502.095000px;}
.yc3{bottom:503.355000px;}
.y24{bottom:504.435000px;}
.y196{bottom:507.855000px;}
.y1b3{bottom:508.215000px;}
.yea{bottom:510.735000px;}
.y5a{bottom:511.455000px;}
.y136{bottom:517.935000px;}
.y8d{bottom:521.355000px;}
.y118{bottom:521.895000px;}
.yc2{bottom:523.155000px;}
.y23{bottom:524.415000px;}
.y195{bottom:527.655000px;}
.y1b2{bottom:528.015000px;}
.ye9{bottom:530.895000px;}
.y59{bottom:531.255000px;}
.y135{bottom:537.915000px;}
.y8c{bottom:541.155000px;}
.y117{bottom:541.695000px;}
.yc1{bottom:542.955000px;}
.y22{bottom:544.215000px;}
.y194{bottom:547.455000px;}
.y1b1{bottom:547.995000px;}
.y58{bottom:551.235000px;}
.y115{bottom:556.455000px;}
.y134{bottom:558.075000px;}
.y8b{bottom:561.135000px;}
.yc0{bottom:562.935000px;}
.y21{bottom:564.015000px;}
.y193{bottom:567.255000px;}
.y1b0{bottom:567.795000px;}
.ye8{bottom:571.035000px;}
.y57{bottom:571.575000px;}
.y133{bottom:577.875000px;}
.y8a{bottom:580.935000px;}
.ybf{bottom:582.735000px;}
.y20{bottom:583.815000px;}
.y192{bottom:587.055000px;}
.y1af{bottom:587.595000px;}
.ye7{bottom:591.015000px;}
.y114{bottom:596.955000px;}
.y132{bottom:597.855000px;}
.y89{bottom:600.735000px;}
.ybe{bottom:602.535000px;}
.y1f{bottom:603.615000px;}
.y191{bottom:607.035000px;}
.y1ae{bottom:607.395000px;}
.ye6{bottom:610.815000px;}
.y56{bottom:611.715000px;}
.y112{bottom:617.475000px;}
.y131{bottom:617.655000px;}
.y88{bottom:620.715000px;}
.ybd{bottom:622.335000px;}
.y1e{bottom:623.595000px;}
.y154{bottom:623.775000px;}
.y190{bottom:626.835000px;}
.y1ad{bottom:627.195000px;}
.ye5{bottom:630.615000px;}
.y55{bottom:631.695000px;}
.y130{bottom:634.215000px;}
.y87{bottom:640.875000px;}
.y1d{bottom:643.395000px;}
.y153{bottom:643.755000px;}
.y18f{bottom:646.635000px;}
.y1ac{bottom:647.175000px;}
.ye4{bottom:650.445000px;}
.y86{bottom:650.985000px;}
.ybc{bottom:651.165000px;}
.y54{bottom:651.885000px;}
.y110{bottom:658.005000px;}
.y1c{bottom:663.225000px;}
.y152{bottom:663.765000px;}
.y18e{bottom:666.465000px;}
.y1ab{bottom:667.005000px;}
.ye3{bottom:670.245000px;}
.ybb{bottom:671.145000px;}
.y53{bottom:671.685000px;}
.y85{bottom:680.865000px;}
.y1b{bottom:683.025000px;}
.y151{bottom:683.925000px;}
.y18d{bottom:686.265000px;}
.y1aa{bottom:686.805000px;}
.ye2{bottom:690.225000px;}
.yba{bottom:690.945000px;}
.y52{bottom:691.485000px;}
.y10f{bottom:698.325000px;}
.y84{bottom:701.025000px;}
.y1a{bottom:702.825000px;}
.y150{bottom:705.885000px;}
.y18c{bottom:706.245000px;}
.y1a9{bottom:706.605000px;}
.ye1{bottom:710.025000px;}
.yb9{bottom:710.745000px;}
.y83{bottom:717.945000px;}
.y10e{bottom:719.025000px;}
.y51{bottom:720.465000px;}
.y19{bottom:724.965000px;}
.y14f{bottom:725.865000px;}
.y18b{bottom:726.045000px;}
.y1a8{bottom:726.405000px;}
.y81{bottom:726.945000px;}
.ye0{bottom:729.825000px;}
.yb8{bottom:730.545000px;}
.y80{bottom:737.025000px;}
.y10d{bottom:739.545000px;}
.y50{bottom:740.625000px;}
.yde{bottom:743.865000px;}
.y18{bottom:744.765000px;}
.y14e{bottom:745.665000px;}
.y18a{bottom:745.845000px;}
.y1a7{bottom:746.385000px;}
.yb7{bottom:749.085000px;}
.y82{bottom:759.345000px;}
.y4f{bottom:760.425000px;}
.yb5{bottom:762.765000px;}
.y17{bottom:764.565000px;}
.yb6{bottom:765.285000px;}
.y14d{bottom:765.465000px;}
.y189{bottom:765.645000px;}
.y1a6{bottom:766.185000px;}
.y7f{bottom:773.925000px;}
.y10c{bottom:780.045000px;}
.y4e{bottom:780.225000px;}
.y16{bottom:784.545000px;}
.y14c{bottom:785.265000px;}
.y188{bottom:785.445000px;}
.y1a5{bottom:785.985000px;}
.y7e{bottom:793.725000px;}
.yb4{bottom:795.345000px;}
.y166{bottom:796.785000px;}
.y4d{bottom:800.025000px;}
.y15{bottom:804.345000px;}
.y14b{bottom:805.245000px;}
.y187{bottom:805.425000px;}
.y1a4{bottom:805.785000px;}
.y7d{bottom:813.525000px;}
.yb3{bottom:815.505000px;}
.y165{bottom:816.585000px;}
.y4c{bottom:819.825000px;}
.y10b{bottom:820.365000px;}
.y14a{bottom:821.805000px;}
.y14{bottom:824.145000px;}
.y186{bottom:825.225000px;}
.y1a3{bottom:825.585000px;}
.y7c{bottom:833.505000px;}
.yb2{bottom:835.485000px;}
.y164{bottom:836.565000px;}
.y4b{bottom:839.805000px;}
.y109{bottom:841.065000px;}
.y185{bottom:845.025000px;}
.y1a2{bottom:845.565000px;}
.y13{bottom:846.285000px;}
.yb1{bottom:855.285000px;}
.y163{bottom:856.365000px;}
.y4a{bottom:859.785000px;}
.y7b{bottom:862.305000px;}
.y184{bottom:864.825000px;}
.y1a1{bottom:865.365000px;}
.y12{bottom:866.085000px;}
.yb0{bottom:875.265000px;}
.y162{bottom:876.165000px;}
.y49{bottom:879.765000px;}
.y106{bottom:881.385000px;}
.y7a{bottom:882.105000px;}
.y183{bottom:884.625000px;}
.y1a0{bottom:885.165000px;}
.y11{bottom:891.105000px;}
.yaf{bottom:895.065000px;}
.y161{bottom:895.965000px;}
.y48{bottom:899.610000px;}
.y79{bottom:901.950000px;}
.y182{bottom:904.650000px;}
.y19f{bottom:905.010000px;}
.y10{bottom:910.950000px;}
.yae{bottom:914.910000px;}
.y160{bottom:915.810000px;}
.y78{bottom:922.110000px;}
.y181{bottom:924.450000px;}
.y46{bottom:924.810000px;}
.y105{bottom:927.690000px;}
.yf{bottom:930.930000px;}
.y47{bottom:933.090000px;}
.y45{bottom:934.890000px;}
.y15f{bottom:935.790000px;}
.y77{bottom:942.270000px;}
.yad{bottom:943.710000px;}
.y180{bottom:944.790000px;}
.ye{bottom:946.050000px;}
.y104{bottom:947.490000px;}
.y15e{bottom:955.590000px;}
.y76{bottom:962.250000px;}
.yac{bottom:963.510000px;}
.y17f{bottom:964.590000px;}
.yd{bottom:967.290000px;}
.y44{bottom:975.390000px;}
.y75{bottom:982.050000px;}
.yab{bottom:983.490000px;}
.y17e{bottom:984.390000px;}
.y103{bottom:987.090000px;}
.yc{bottom:990.690000px;}
.y43{bottom:995.190000px;}
.y74{bottom:1002.030000px;}
.yaa{bottom:1003.290000px;}
.y17d{bottom:1004.190000px;}
.y102{bottom:1007.070000px;}
.y42{bottom:1014.990000px;}
.y73{bottom:1022.010000px;}
.yb{bottom:1022.550000px;}
.ya9{bottom:1023.090000px;}
.ydd{bottom:1023.270000px;}
.y17c{bottom:1023.990000px;}
.y101{bottom:1026.870000px;}
.y41{bottom:1034.970000px;}
.y72{bottom:1041.990000px;}
.ya8{bottom:1043.070000px;}
.y17b{bottom:1043.970000px;}
.y100{bottom:1045.410000px;}
.y5{bottom:1050.630000px;}
.y40{bottom:1054.770000px;}
.y71{bottom:1061.790000px;}
.ydc{bottom:1062.870000px;}
.ya7{bottom:1063.410000px;}
.y17a{bottom:1063.770000px;}
.ya6{bottom:1073.490000px;}
.y3f{bottom:1074.570000px;}
.y70{bottom:1081.770000px;}
.y4{bottom:1081.950000px;}
.yff{bottom:1082.670000px;}
.ydb{bottom:1082.850000px;}
.y179{bottom:1083.570000px;}
.y12f{bottom:1094.370000px;}
.y6f{bottom:1102.290000px;}
.yfe{bottom:1102.470000px;}
.ya5{bottom:1102.830000px;}
.y3e{bottom:1103.370000px;}
.y3{bottom:1112.730000px;}
.y6e{bottom:1122.450000px;}
.ya4{bottom:1122.810000px;}
.yda{bottom:1122.990000px;}
.y3d{bottom:1123.170000px;}
.y6d{bottom:1142.790000px;}
.ya3{bottom:1142.970000px;}
.y3c{bottom:1143.150000px;}
.y2{bottom:1143.690000px;}
.y3b{bottom:1172.520000px;}
.y1{bottom:1177.560000px;}
.y3a{bottom:1194.300000px;}
.h24{height:19.800000px;}
.h25{height:19.980000px;}
.h1b{height:20.160000px;}
.h5{height:21.240000px;}
.hb{height:27.147656px;}
.h7{height:27.432422px;}
.h6{height:29.464453px;}
.h23{height:39.600000px;}
.h22{height:39.636000px;}
.h27{height:39.780000px;}
.h26{height:39.816000px;}
.h1e{height:40.320000px;}
.h1c{height:40.500000px;}
.h1d{height:40.536000px;}
.h4{height:41.726953px;}
.h9{height:42.164648px;}
.hc{height:43.506914px;}
.h20{height:44.260664px;}
.h2a{height:45.549492px;}
.hd{height:46.251562px;}
.h3{height:46.736719px;}
.ha{height:53.224453px;}
.he{height:59.439023px;}
.h8{height:65.884219px;}
.h2{height:67.565039px;}
.h16{height:83.254922px;}
.h17{height:118.046953px;}
.h14{height:119.140664px;}
.h13{height:121.300664px;}
.h12{height:128.500664px;}
.h1a{height:149.380664px;}
.h21{height:156.580664px;}
.h19{height:158.854922px;}
.h28{height:159.460664px;}
.h18{height:159.580664px;}
.h15{height:161.620664px;}
.hf{height:165.220664px;}
.h11{height:178.180664px;}
.h29{height:195.460664px;}
.h10{height:205.540664px;}
.h1f{height:273.630000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w3{width:57.816000px;}
.w7{width:109.620000px;}
.wa{width:112.176000px;}
.w9{width:114.516000px;}
.wb{width:115.020000px;}
.w6{width:120.096000px;}
.w5{width:133.416000px;}
.w8{width:366.015000px;}
.w4{width:718.170000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x3{left:8.100000px;}
.x2f{left:12.960000px;}
.x2a{left:18.360000px;}
.x2c{left:20.700000px;}
.x30{left:23.940000px;}
.x2b{left:26.280000px;}
.x31{left:29.700000px;}
.x32{left:31.356000px;}
.x2d{left:34.776000px;}
.x27{left:41.976000px;}
.x2e{left:45.000000px;}
.x28{left:46.260000px;}
.x1{left:54.179987px;}
.xe{left:58.859987px;}
.x43{left:61.019987px;}
.x2{left:62.100000px;}
.x37{left:65.340000px;}
.x10{left:70.199987px;}
.x26{left:75.599987px;}
.x13{left:78.479987px;}
.x34{left:80.999987px;}
.x48{left:86.435987px;}
.x41{left:105.335987px;}
.x35{left:108.035987px;}
.x49{left:113.435987px;}
.x25{left:118.295987px;}
.x4{left:120.636000px;}
.xd{left:138.455987px;}
.x14{left:139.535987px;}
.x44{left:143.315987px;}
.x3a{left:146.735987px;}
.xc{left:152.849987px;}
.x16{left:171.389987px;}
.x38{left:180.750000px;}
.x23{left:185.069987px;}
.xb{left:188.669987px;}
.x3b{left:195.509987px;}
.x15{left:203.609987px;}
.x36{left:207.929987px;}
.x3d{left:209.369987px;}
.x3c{left:215.489987px;}
.x9{left:231.509987px;}
.x24{left:240.689987px;}
.x8{left:250.059000px;}
.x7{left:255.099000px;}
.x39{left:293.655000px;}
.x29{left:309.675000px;}
.x33{left:361.515000px;}
.xf{left:398.954987px;}
.x6{left:413.709000px;}
.x12{left:423.614987px;}
.x5{left:427.209000px;}
.xa{left:446.504987px;}
.x42{left:450.284987px;}
.x11{left:473.144987px;}
.x47{left:475.124987px;}
.x3f{left:479.264987px;}
.x46{left:485.384987px;}
.x40{left:487.724987px;}
.x18{left:489.344987px;}
.x1b{left:500.144987px;}
.x4a{left:505.544987px;}
.x19{left:527.144987px;}
.x4b{left:532.544987px;}
.x1a{left:533.804987px;}
.x20{left:536.684987px;}
.x1c{left:565.844987px;}
.x22{left:570.884987px;}
.x17{left:593.744987px;}
.x1d{left:614.624987px;}
.x1f{left:628.529987px;}
.x1e{left:634.649987px;}
.x21{left:661.109987px;}
.x45{left:849.779987px;}
.x3e{left:858.419987px;}
@media print{
.v15{vertical-align:-99.200000pt;}
.ve{vertical-align:-71.040000pt;}
.v2{vertical-align:-18.560000pt;}
.vd{vertical-align:-10.880000pt;}
.vc{vertical-align:-4.480000pt;}
.v9{vertical-align:-3.200000pt;}
.va{vertical-align:-1.280000pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:1.920000pt;}
.v4{vertical-align:5.760000pt;}
.vb{vertical-align:8.320000pt;}
.vf{vertical-align:10.880000pt;}
.v10{vertical-align:19.946667pt;}
.v1{vertical-align:21.120000pt;}
.v13{vertical-align:26.880000pt;}
.v11{vertical-align:30.720000pt;}
.v16{vertical-align:32.640000pt;}
.v6{vertical-align:35.840000pt;}
.v5{vertical-align:40.960000pt;}
.v14{vertical-align:48.640000pt;}
.v8{vertical-align:52.480000pt;}
.v12{vertical-align:67.840000pt;}
.v7{vertical-align:76.800000pt;}
.ls9{letter-spacing:-0.409067pt;}
.ls37{letter-spacing:-0.230933pt;}
.ls50{letter-spacing:-0.215467pt;}
.ls4b{letter-spacing:-0.198933pt;}
.ls8{letter-spacing:-0.183467pt;}
.ls4c{letter-spacing:-0.153067pt;}
.ls4f{letter-spacing:-0.092267pt;}
.ls51{letter-spacing:-0.079467pt;}
.ls7{letter-spacing:-0.047360pt;}
.ls5{letter-spacing:-0.016640pt;}
.ls4e{letter-spacing:-0.013440pt;}
.ls4{letter-spacing:0.000000pt;}
.ls3b{letter-spacing:0.011520pt;}
.ls3a{letter-spacing:0.047360pt;}
.ls52{letter-spacing:0.128000pt;}
.ls38{letter-spacing:0.130133pt;}
.ls4d{letter-spacing:0.137600pt;}
.ls1{letter-spacing:0.160000pt;}
.ls2{letter-spacing:0.183467pt;}
.ls16{letter-spacing:0.229120pt;}
.ls6{letter-spacing:0.230933pt;}
.ls49{letter-spacing:0.231040pt;}
.ls56{letter-spacing:0.265600pt;}
.ls3c{letter-spacing:0.267733pt;}
.ls40{letter-spacing:0.272000pt;}
.ls48{letter-spacing:0.274667pt;}
.ls39{letter-spacing:0.284800pt;}
.lsa{letter-spacing:0.320000pt;}
.ls1a{letter-spacing:0.355200pt;}
.ls1b{letter-spacing:0.389120pt;}
.ls47{letter-spacing:0.409067pt;}
.ls14{letter-spacing:0.460160pt;}
.ls32{letter-spacing:0.638720pt;}
.ls33{letter-spacing:0.800000pt;}
.lsd{letter-spacing:0.869120pt;}
.ls1d{letter-spacing:0.995200pt;}
.ls36{letter-spacing:1.029120pt;}
.ls3f{letter-spacing:1.123200pt;}
.ls2a{letter-spacing:1.180160pt;}
.lsc{letter-spacing:1.366400pt;}
.ls21{letter-spacing:1.408000pt;}
.ls2c{letter-spacing:1.610240pt;}
.ls23{letter-spacing:1.612800pt;}
.ls34{letter-spacing:1.812480pt;}
.ls44{letter-spacing:1.863040pt;}
.ls3e{letter-spacing:1.911040pt;}
.ls35{letter-spacing:2.016000pt;}
.ls1f{letter-spacing:2.080000pt;}
.ls42{letter-spacing:2.212480pt;}
.ls2b{letter-spacing:2.551040pt;}
.ls41{letter-spacing:2.735360pt;}
.ls4a{letter-spacing:2.827520pt;}
.ls1c{letter-spacing:2.970880pt;}
.ls26{letter-spacing:2.987520pt;}
.ls3d{letter-spacing:3.092480pt;}
.ls17{letter-spacing:3.403520pt;}
.ls29{letter-spacing:3.448320pt;}
.ls27{letter-spacing:3.467520pt;}
.ls25{letter-spacing:3.482880pt;}
.ls19{letter-spacing:3.610880pt;}
.ls20{letter-spacing:4.800000pt;}
.ls3{letter-spacing:6.992640pt;}
.ls1e{letter-spacing:8.480000pt;}
.ls28{letter-spacing:8.950400pt;}
.ls22{letter-spacing:10.192640pt;}
.ls45{letter-spacing:10.802560pt;}
.ls11{letter-spacing:11.519360pt;}
.ls54{letter-spacing:11.676160pt;}
.ls2f{letter-spacing:11.836160pt;}
.ls18{letter-spacing:12.515200pt;}
.lsb{letter-spacing:13.392640pt;}
.ls57{letter-spacing:14.672640pt;}
.ls30{letter-spacing:14.719360pt;}
.lse{letter-spacing:15.075200pt;}
.ls24{letter-spacing:15.235200pt;}
.lsf{letter-spacing:15.359360pt;}
.ls43{letter-spacing:17.455360pt;}
.ls2e{letter-spacing:19.839360pt;}
.ls13{letter-spacing:21.131520pt;}
.ls0{letter-spacing:28.112640pt;}
.ls2d{letter-spacing:40.912640pt;}
.ls10{letter-spacing:42.541867pt;}
.ls12{letter-spacing:47.683200pt;}
.ls46{letter-spacing:53.238400pt;}
.ls15{letter-spacing:70.090880pt;}
.ls55{letter-spacing:82.915200pt;}
.ls31{letter-spacing:83.198720pt;}
.ls53{letter-spacing:284.426667pt;}
.ws10{word-spacing:-20.636800pt;}
.ws0{word-spacing:-14.720000pt;}
.ws18{word-spacing:-13.689067pt;}
.ws6{word-spacing:-13.600000pt;}
.ws7{word-spacing:-13.463467pt;}
.wsf{word-spacing:-13.327360pt;}
.ws3{word-spacing:-13.280000pt;}
.ws4{word-spacing:-13.232640pt;}
.ws5{word-spacing:-13.096533pt;}
.ws9{word-spacing:-13.049067pt;}
.wsc{word-spacing:-11.971200pt;}
.ws19{word-spacing:-11.961067pt;}
.ws1c{word-spacing:-11.824000pt;}
.wsb{word-spacing:-11.816533pt;}
.ws21{word-spacing:-11.814400pt;}
.ws14{word-spacing:-11.697920pt;}
.wsa{word-spacing:-11.686400pt;}
.ws1d{word-spacing:-11.672960pt;}
.wsd{word-spacing:-11.639040pt;}
.ws1e{word-spacing:-11.594133pt;}
.ws1b{word-spacing:-11.533333pt;}
.ws1a{word-spacing:-11.487467pt;}
.ws1f{word-spacing:-11.470933pt;}
.ws1{word-spacing:-9.280000pt;}
.ws2{word-spacing:-8.640000pt;}
.ws15{word-spacing:-8.434133pt;}
.wse{word-spacing:-8.166400pt;}
.ws8{word-spacing:0.000000pt;}
.ws25{word-spacing:2.526507pt;}
.ws11{word-spacing:2.547840pt;}
.ws27{word-spacing:7.945387pt;}
.ws13{word-spacing:8.560640pt;}
.ws20{word-spacing:8.799147pt;}
.ws22{word-spacing:41.424000pt;}
.ws24{word-spacing:44.725120pt;}
.ws17{word-spacing:53.072000pt;}
.ws16{word-spacing:81.646720pt;}
.ws23{word-spacing:99.664000pt;}
.ws26{word-spacing:316.741120pt;}
.ws12{word-spacing:337.061120pt;}
._2{margin-left:-1892.143787pt;}
._3{margin-left:-1448.465920pt;}
._4{margin-left:-1041.576960pt;}
._5{margin-left:-1036.520960pt;}
._6{margin-left:-28.160000pt;}
._2b{margin-left:-13.534080pt;}
._2a{margin-left:-11.086080pt;}
._28{margin-left:-8.941653pt;}
._29{margin-left:-7.734827pt;}
._32{margin-left:-6.054400pt;}
._10{margin-left:-3.026987pt;}
._b{margin-left:-1.973973pt;}
._1{margin-left:-0.898560pt;}
._0{width:1.029547pt;}
._7{width:2.285227pt;}
._8{width:3.293653pt;}
._11{width:4.355840pt;}
._a{width:5.559467pt;}
._9{width:6.498773pt;}
._13{width:7.538560pt;}
._c{width:8.711680pt;}
._e{width:10.391253pt;}
._1c{width:11.792640pt;}
._20{width:12.896427pt;}
._14{width:14.873600pt;}
._22{width:15.845547pt;}
._2c{width:16.839040pt;}
._1f{width:18.412373pt;}
._f{width:19.388800pt;}
._12{width:20.929280pt;}
._15{width:21.885440pt;}
._1b{width:22.960427pt;}
._16{width:24.405973pt;}
._2e{width:25.704533pt;}
._1e{width:26.725333pt;}
._1d{width:27.831893pt;}
._1a{width:30.012800pt;}
._19{width:30.968960pt;}
._3d{width:32.717440pt;}
._33{width:33.678080pt;}
._34{width:34.846720pt;}
._d{width:38.140160pt;}
._3e{width:39.872853pt;}
._18{width:41.646080pt;}
._17{width:42.549120pt;}
._40{width:44.547413pt;}
._2d{width:47.395627pt;}
._3c{width:58.039893pt;}
._30{width:63.319040pt;}
._39{width:70.940160pt;}
._38{width:71.867520pt;}
._37{width:73.040000pt;}
._26{width:74.608640pt;}
._3f{width:76.313173pt;}
._25{width:77.694293pt;}
._27{width:79.667840pt;}
._35{width:84.387413pt;}
._36{width:85.298133pt;}
._31{width:86.691840pt;}
._24{width:95.155840pt;}
._3a{width:98.293973pt;}
._3b{width:99.626453pt;}
._21{width:134.140800pt;}
._2f{width:135.402880pt;}
._23{width:175.948160pt;}
.fs6{font-size:34.560000pt;}
.fs5{font-size:37.120000pt;}
.fs7{font-size:42.880000pt;}
.fs4{font-size:53.120000pt;}
.fs3{font-size:58.880000pt;}
.fs2{font-size:69.120000pt;}
.fs1{font-size:74.880000pt;}
.fs0{font-size:85.120000pt;}
.y0{bottom:0.000000pt;}
.ydf{bottom:2.240000pt;}
.y7{bottom:5.120000pt;}
.yc6{bottom:5.280000pt;}
.yc9{bottom:5.440000pt;}
.y9{bottom:9.760000pt;}
.y8{bottom:10.400000pt;}
.y107{bottom:13.920000pt;}
.y116{bottom:14.080000pt;}
.yd0{bottom:14.240000pt;}
.yca{bottom:14.400000pt;}
.y111{bottom:14.720000pt;}
.y10a{bottom:22.720000pt;}
.y108{bottom:22.760000pt;}
.y113{bottom:22.880000pt;}
.ycf{bottom:23.200000pt;}
.yc8{bottom:23.360000pt;}
.ycc{bottom:23.400000pt;}
.ya{bottom:35.360000pt;}
.y6{bottom:49.280000pt;}
.y178{bottom:72.960000pt;}
.y39{bottom:78.080000pt;}
.ya2{bottom:83.200000pt;}
.y15d{bottom:84.960000pt;}
.yd9{bottom:86.080000pt;}
.y6c{bottom:88.960000pt;}
.y177{bottom:90.560000pt;}
.y38{bottom:95.680000pt;}
.y12e{bottom:99.040000pt;}
.ya1{bottom:101.120000pt;}
.y15c{bottom:102.560000pt;}
.yd8{bottom:103.840000pt;}
.y6b{bottom:106.560000pt;}
.y176{bottom:108.160000pt;}
.y37{bottom:113.440000pt;}
.yfd{bottom:114.240000pt;}
.y12d{bottom:116.640000pt;}
.y149{bottom:117.440000pt;}
.ya0{bottom:119.040000pt;}
.y15b{bottom:120.320000pt;}
.yd7{bottom:121.600000pt;}
.y175{bottom:125.920000pt;}
.y36{bottom:131.040000pt;}
.yfc{bottom:132.000000pt;}
.y6a{bottom:132.320000pt;}
.y12c{bottom:134.240000pt;}
.y148{bottom:135.066667pt;}
.y9f{bottom:136.986667pt;}
.y15a{bottom:138.266667pt;}
.yd6{bottom:139.226667pt;}
.y174{bottom:143.546667pt;}
.y35{bottom:148.666667pt;}
.yfb{bottom:150.106667pt;}
.y69{bottom:150.266667pt;}
.y12b{bottom:151.866667pt;}
.y147{bottom:152.666667pt;}
.y9e{bottom:154.586667pt;}
.y159{bottom:155.866667pt;}
.yd5{bottom:156.826667pt;}
.y173{bottom:161.146667pt;}
.y34{bottom:166.266667pt;}
.yfa{bottom:167.866667pt;}
.y68{bottom:168.186667pt;}
.y1be{bottom:169.146667pt;}
.y12a{bottom:169.466667pt;}
.y146{bottom:170.266667pt;}
.y9d{bottom:172.346667pt;}
.y158{bottom:173.626667pt;}
.yd4{bottom:174.426667pt;}
.y172{bottom:178.746667pt;}
.y33{bottom:183.866667pt;}
.yf9{bottom:185.466667pt;}
.y67{bottom:185.946667pt;}
.y19e{bottom:186.906667pt;}
.y129{bottom:187.226667pt;}
.y145{bottom:187.866667pt;}
.y9c{bottom:190.426667pt;}
.y157{bottom:191.226667pt;}
.yd3{bottom:192.026667pt;}
.y171{bottom:196.346667pt;}
.y32{bottom:201.626667pt;}
.yf8{bottom:203.226667pt;}
.y66{bottom:203.866667pt;}
.y19d{bottom:204.506667pt;}
.y128{bottom:204.826667pt;}
.y144{bottom:205.626667pt;}
.y9b{bottom:208.346667pt;}
.y156{bottom:208.826667pt;}
.yd2{bottom:209.786667pt;}
.y170{bottom:214.106667pt;}
.y31{bottom:219.226667pt;}
.yf7{bottom:220.986667pt;}
.y19c{bottom:222.106667pt;}
.y127{bottom:222.426667pt;}
.y1bd{bottom:222.586667pt;}
.yd1{bottom:222.906667pt;}
.y143{bottom:223.226667pt;}
.y155{bottom:223.546667pt;}
.y9a{bottom:226.266667pt;}
.y16f{bottom:231.706667pt;}
.y30{bottom:236.826667pt;}
.yf6{bottom:238.906667pt;}
.y65{bottom:239.706667pt;}
.y126{bottom:240.026667pt;}
.y1bc{bottom:240.186667pt;}
.y142{bottom:240.826667pt;}
.y99{bottom:243.866667pt;}
.y16e{bottom:249.306667pt;}
.y2f{bottom:254.426667pt;}
.yf5{bottom:256.666667pt;}
.y64{bottom:257.306667pt;}
.y125{bottom:257.626667pt;}
.y1bb{bottom:257.786667pt;}
.y141{bottom:258.426667pt;}
.yce{bottom:259.546667pt;}
.y16d{bottom:266.906667pt;}
.y98{bottom:269.466667pt;}
.y2e{bottom:272.026667pt;}
.yf4{bottom:274.426667pt;}
.y63{bottom:274.906667pt;}
.y19b{bottom:275.066667pt;}
.y124{bottom:275.386667pt;}
.y140{bottom:276.026667pt;}
.y16c{bottom:284.506667pt;}
.y97{bottom:287.066667pt;}
.y2d{bottom:289.786667pt;}
.y62{bottom:292.666667pt;}
.y123{bottom:292.986667pt;}
.y13f{bottom:293.786667pt;}
.yf3{bottom:294.266667pt;}
.ycd{bottom:296.026667pt;}
.y16b{bottom:302.266667pt;}
.y96{bottom:304.666667pt;}
.y2c{bottom:307.386667pt;}
.y61{bottom:310.266667pt;}
.y122{bottom:310.586667pt;}
.y1ba{bottom:310.746667pt;}
.y13e{bottom:311.386667pt;}
.yf2{bottom:312.026667pt;}
.y16a{bottom:319.866667pt;}
.y95{bottom:322.426667pt;}
.y2b{bottom:324.986667pt;}
.y60{bottom:327.866667pt;}
.y121{bottom:328.346667pt;}
.yf1{bottom:329.626667pt;}
.ycb{bottom:332.666667pt;}
.y13d{bottom:336.986667pt;}
.y120{bottom:337.306667pt;}
.y169{bottom:337.466667pt;}
.y94{bottom:340.026667pt;}
.y2a{bottom:342.586667pt;}
.y5f{bottom:345.466667pt;}
.y1b9{bottom:345.946667pt;}
.yf0{bottom:347.226667pt;}
.y13c{bottom:354.586667pt;}
.y168{bottom:355.066667pt;}
.y93{bottom:357.666667pt;}
.y29{bottom:360.226667pt;}
.y5e{bottom:363.266667pt;}
.y1b8{bottom:363.586667pt;}
.y11f{bottom:363.906667pt;}
.yef{bottom:364.866667pt;}
.yc7{bottom:369.346667pt;}
.y167{bottom:369.826667pt;}
.y13b{bottom:372.226667pt;}
.y92{bottom:375.266667pt;}
.y28{bottom:377.986667pt;}
.y19a{bottom:380.866667pt;}
.y1b7{bottom:381.186667pt;}
.y5d{bottom:381.346667pt;}
.y11e{bottom:381.506667pt;}
.yee{bottom:382.626667pt;}
.y13a{bottom:389.986667pt;}
.y91{bottom:392.866667pt;}
.y27{bottom:395.586667pt;}
.y11d{bottom:396.386667pt;}
.y199{bottom:398.466667pt;}
.y1b6{bottom:398.946667pt;}
.yed{bottom:400.386667pt;}
.y5c{bottom:400.866667pt;}
.y11b{bottom:404.386667pt;}
.yc5{bottom:405.986667pt;}
.y139{bottom:407.586667pt;}
.y90{bottom:410.626667pt;}
.y26{bottom:413.186667pt;}
.y11a{bottom:413.346667pt;}
.y198{bottom:416.066667pt;}
.y1b5{bottom:416.546667pt;}
.yec{bottom:418.146667pt;}
.y5b{bottom:418.786667pt;}
.y138{bottom:425.186667pt;}
.y8f{bottom:428.226667pt;}
.yc4{bottom:429.826667pt;}
.y25{bottom:430.786667pt;}
.y11c{bottom:433.186667pt;}
.y197{bottom:433.666667pt;}
.y1b4{bottom:434.146667pt;}
.yeb{bottom:436.066667pt;}
.y137{bottom:442.786667pt;}
.y8e{bottom:445.826667pt;}
.y119{bottom:446.306667pt;}
.yc3{bottom:447.426667pt;}
.y24{bottom:448.386667pt;}
.y196{bottom:451.426667pt;}
.y1b3{bottom:451.746667pt;}
.yea{bottom:453.986667pt;}
.y5a{bottom:454.626667pt;}
.y136{bottom:460.386667pt;}
.y8d{bottom:463.426667pt;}
.y118{bottom:463.906667pt;}
.yc2{bottom:465.026667pt;}
.y23{bottom:466.146667pt;}
.y195{bottom:469.026667pt;}
.y1b2{bottom:469.346667pt;}
.ye9{bottom:471.906667pt;}
.y59{bottom:472.226667pt;}
.y135{bottom:478.146667pt;}
.y8c{bottom:481.026667pt;}
.y117{bottom:481.506667pt;}
.yc1{bottom:482.626667pt;}
.y22{bottom:483.746667pt;}
.y194{bottom:486.626667pt;}
.y1b1{bottom:487.106667pt;}
.y58{bottom:489.986667pt;}
.y115{bottom:494.626667pt;}
.y134{bottom:496.066667pt;}
.y8b{bottom:498.786667pt;}
.yc0{bottom:500.386667pt;}
.y21{bottom:501.346667pt;}
.y193{bottom:504.226667pt;}
.y1b0{bottom:504.706667pt;}
.ye8{bottom:507.586667pt;}
.y57{bottom:508.066667pt;}
.y133{bottom:513.666667pt;}
.y8a{bottom:516.386667pt;}
.ybf{bottom:517.986667pt;}
.y20{bottom:518.946667pt;}
.y192{bottom:521.826667pt;}
.y1af{bottom:522.306667pt;}
.ye7{bottom:525.346667pt;}
.y114{bottom:530.626667pt;}
.y132{bottom:531.426667pt;}
.y89{bottom:533.986667pt;}
.ybe{bottom:535.586667pt;}
.y1f{bottom:536.546667pt;}
.y191{bottom:539.586667pt;}
.y1ae{bottom:539.906667pt;}
.ye6{bottom:542.946667pt;}
.y56{bottom:543.746667pt;}
.y112{bottom:548.866667pt;}
.y131{bottom:549.026667pt;}
.y88{bottom:551.746667pt;}
.ybd{bottom:553.186667pt;}
.y1e{bottom:554.306667pt;}
.y154{bottom:554.466667pt;}
.y190{bottom:557.186667pt;}
.y1ad{bottom:557.506667pt;}
.ye5{bottom:560.546667pt;}
.y55{bottom:561.506667pt;}
.y130{bottom:563.746667pt;}
.y87{bottom:569.666667pt;}
.y1d{bottom:571.906667pt;}
.y153{bottom:572.226667pt;}
.y18f{bottom:574.786667pt;}
.y1ac{bottom:575.266667pt;}
.ye4{bottom:578.173333pt;}
.y86{bottom:578.653333pt;}
.ybc{bottom:578.813333pt;}
.y54{bottom:579.453333pt;}
.y110{bottom:584.893333pt;}
.y1c{bottom:589.533333pt;}
.y152{bottom:590.013333pt;}
.y18e{bottom:592.413333pt;}
.y1ab{bottom:592.893333pt;}
.ye3{bottom:595.773333pt;}
.ybb{bottom:596.573333pt;}
.y53{bottom:597.053333pt;}
.y85{bottom:605.213333pt;}
.y1b{bottom:607.133333pt;}
.y151{bottom:607.933333pt;}
.y18d{bottom:610.013333pt;}
.y1aa{bottom:610.493333pt;}
.ye2{bottom:613.533333pt;}
.yba{bottom:614.173333pt;}
.y52{bottom:614.653333pt;}
.y10f{bottom:620.733333pt;}
.y84{bottom:623.133333pt;}
.y1a{bottom:624.733333pt;}
.y150{bottom:627.453333pt;}
.y18c{bottom:627.773333pt;}
.y1a9{bottom:628.093333pt;}
.ye1{bottom:631.133333pt;}
.yb9{bottom:631.773333pt;}
.y83{bottom:638.173333pt;}
.y10e{bottom:639.133333pt;}
.y51{bottom:640.413333pt;}
.y19{bottom:644.413333pt;}
.y14f{bottom:645.213333pt;}
.y18b{bottom:645.373333pt;}
.y1a8{bottom:645.693333pt;}
.y81{bottom:646.173333pt;}
.ye0{bottom:648.733333pt;}
.yb8{bottom:649.373333pt;}
.y80{bottom:655.133333pt;}
.y10d{bottom:657.373333pt;}
.y50{bottom:658.333333pt;}
.yde{bottom:661.213333pt;}
.y18{bottom:662.013333pt;}
.y14e{bottom:662.813333pt;}
.y18a{bottom:662.973333pt;}
.y1a7{bottom:663.453333pt;}
.yb7{bottom:665.853333pt;}
.y82{bottom:674.973333pt;}
.y4f{bottom:675.933333pt;}
.yb5{bottom:678.013333pt;}
.y17{bottom:679.613333pt;}
.yb6{bottom:680.253333pt;}
.y14d{bottom:680.413333pt;}
.y189{bottom:680.573333pt;}
.y1a6{bottom:681.053333pt;}
.y7f{bottom:687.933333pt;}
.y10c{bottom:693.373333pt;}
.y4e{bottom:693.533333pt;}
.y16{bottom:697.373333pt;}
.y14c{bottom:698.013333pt;}
.y188{bottom:698.173333pt;}
.y1a5{bottom:698.653333pt;}
.y7e{bottom:705.533333pt;}
.yb4{bottom:706.973333pt;}
.y166{bottom:708.253333pt;}
.y4d{bottom:711.133333pt;}
.y15{bottom:714.973333pt;}
.y14b{bottom:715.773333pt;}
.y187{bottom:715.933333pt;}
.y1a4{bottom:716.253333pt;}
.y7d{bottom:723.133333pt;}
.yb3{bottom:724.893333pt;}
.y165{bottom:725.853333pt;}
.y4c{bottom:728.733333pt;}
.y10b{bottom:729.213333pt;}
.y14a{bottom:730.493333pt;}
.y14{bottom:732.573333pt;}
.y186{bottom:733.533333pt;}
.y1a3{bottom:733.853333pt;}
.y7c{bottom:740.893333pt;}
.yb2{bottom:742.653333pt;}
.y164{bottom:743.613333pt;}
.y4b{bottom:746.493333pt;}
.y109{bottom:747.613333pt;}
.y185{bottom:751.133333pt;}
.y1a2{bottom:751.613333pt;}
.y13{bottom:752.253333pt;}
.yb1{bottom:760.253333pt;}
.y163{bottom:761.213333pt;}
.y4a{bottom:764.253333pt;}
.y7b{bottom:766.493333pt;}
.y184{bottom:768.733333pt;}
.y1a1{bottom:769.213333pt;}
.y12{bottom:769.853333pt;}
.yb0{bottom:778.013333pt;}
.y162{bottom:778.813333pt;}
.y49{bottom:782.013333pt;}
.y106{bottom:783.453333pt;}
.y7a{bottom:784.093333pt;}
.y183{bottom:786.333333pt;}
.y1a0{bottom:786.813333pt;}
.y11{bottom:792.093333pt;}
.yaf{bottom:795.613333pt;}
.y161{bottom:796.413333pt;}
.y48{bottom:799.653333pt;}
.y79{bottom:801.733333pt;}
.y182{bottom:804.133333pt;}
.y19f{bottom:804.453333pt;}
.y10{bottom:809.733333pt;}
.yae{bottom:813.253333pt;}
.y160{bottom:814.053333pt;}
.y78{bottom:819.653333pt;}
.y181{bottom:821.733333pt;}
.y46{bottom:822.053333pt;}
.y105{bottom:824.613333pt;}
.yf{bottom:827.493333pt;}
.y47{bottom:829.413333pt;}
.y45{bottom:831.013333pt;}
.y15f{bottom:831.813333pt;}
.y77{bottom:837.573333pt;}
.yad{bottom:838.853333pt;}
.y180{bottom:839.813333pt;}
.ye{bottom:840.933333pt;}
.y104{bottom:842.213333pt;}
.y15e{bottom:849.413333pt;}
.y76{bottom:855.333333pt;}
.yac{bottom:856.453333pt;}
.y17f{bottom:857.413333pt;}
.yd{bottom:859.813333pt;}
.y44{bottom:867.013333pt;}
.y75{bottom:872.933333pt;}
.yab{bottom:874.213333pt;}
.y17e{bottom:875.013333pt;}
.y103{bottom:877.413333pt;}
.yc{bottom:880.613333pt;}
.y43{bottom:884.613333pt;}
.y74{bottom:890.693333pt;}
.yaa{bottom:891.813333pt;}
.y17d{bottom:892.613333pt;}
.y102{bottom:895.173333pt;}
.y42{bottom:902.213333pt;}
.y73{bottom:908.453333pt;}
.yb{bottom:908.933333pt;}
.ya9{bottom:909.413333pt;}
.ydd{bottom:909.573333pt;}
.y17c{bottom:910.213333pt;}
.y101{bottom:912.773333pt;}
.y41{bottom:919.973333pt;}
.y72{bottom:926.213333pt;}
.ya8{bottom:927.173333pt;}
.y17b{bottom:927.973333pt;}
.y100{bottom:929.253333pt;}
.y5{bottom:933.893333pt;}
.y40{bottom:937.573333pt;}
.y71{bottom:943.813333pt;}
.ydc{bottom:944.773333pt;}
.ya7{bottom:945.253333pt;}
.y17a{bottom:945.573333pt;}
.ya6{bottom:954.213333pt;}
.y3f{bottom:955.173333pt;}
.y70{bottom:961.573333pt;}
.y4{bottom:961.733333pt;}
.yff{bottom:962.373333pt;}
.ydb{bottom:962.533333pt;}
.y179{bottom:963.173333pt;}
.y12f{bottom:972.773333pt;}
.y6f{bottom:979.813333pt;}
.yfe{bottom:979.973333pt;}
.ya5{bottom:980.293333pt;}
.y3e{bottom:980.773333pt;}
.y3{bottom:989.093333pt;}
.y6e{bottom:997.733333pt;}
.ya4{bottom:998.053333pt;}
.yda{bottom:998.213333pt;}
.y3d{bottom:998.373333pt;}
.y6d{bottom:1015.813333pt;}
.ya3{bottom:1015.973333pt;}
.y3c{bottom:1016.133333pt;}
.y2{bottom:1016.613333pt;}
.y3b{bottom:1042.240000pt;}
.y1{bottom:1046.720000pt;}
.y3a{bottom:1061.600000pt;}
.h24{height:17.600000pt;}
.h25{height:17.760000pt;}
.h1b{height:17.920000pt;}
.h5{height:18.880000pt;}
.hb{height:24.131250pt;}
.h7{height:24.384375pt;}
.h6{height:26.190625pt;}
.h23{height:35.200000pt;}
.h22{height:35.232000pt;}
.h27{height:35.360000pt;}
.h26{height:35.392000pt;}
.h1e{height:35.840000pt;}
.h1c{height:36.000000pt;}
.h1d{height:36.032000pt;}
.h4{height:37.090625pt;}
.h9{height:37.479688pt;}
.hc{height:38.672812pt;}
.h20{height:39.342812pt;}
.h2a{height:40.488438pt;}
.hd{height:41.112500pt;}
.h3{height:41.543750pt;}
.ha{height:47.310625pt;}
.he{height:52.834688pt;}
.h8{height:58.563750pt;}
.h2{height:60.057813pt;}
.h16{height:74.004375pt;}
.h17{height:104.930625pt;}
.h14{height:105.902812pt;}
.h13{height:107.822812pt;}
.h12{height:114.222813pt;}
.h1a{height:132.782813pt;}
.h21{height:139.182813pt;}
.h19{height:141.204375pt;}
.h28{height:141.742813pt;}
.h18{height:141.849479pt;}
.h15{height:143.662813pt;}
.hf{height:146.862812pt;}
.h11{height:158.382812pt;}
.h29{height:173.742813pt;}
.h10{height:182.702812pt;}
.h1f{height:243.226667pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w3{width:51.392000pt;}
.w7{width:97.440000pt;}
.wa{width:99.712000pt;}
.w9{width:101.792000pt;}
.wb{width:102.240000pt;}
.w6{width:106.752000pt;}
.w5{width:118.592000pt;}
.w8{width:325.346667pt;}
.w4{width:638.373333pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x3{left:7.200000pt;}
.x2f{left:11.520000pt;}
.x2a{left:16.320000pt;}
.x2c{left:18.400000pt;}
.x30{left:21.280000pt;}
.x2b{left:23.360000pt;}
.x31{left:26.400000pt;}
.x32{left:27.872000pt;}
.x2d{left:30.912000pt;}
.x27{left:37.312000pt;}
.x2e{left:40.000000pt;}
.x28{left:41.120000pt;}
.x1{left:48.159988pt;}
.xe{left:52.319988pt;}
.x43{left:54.239988pt;}
.x2{left:55.200000pt;}
.x37{left:58.080000pt;}
.x10{left:62.399988pt;}
.x26{left:67.199988pt;}
.x13{left:69.759988pt;}
.x34{left:71.999988pt;}
.x48{left:76.831988pt;}
.x41{left:93.631988pt;}
.x35{left:96.031988pt;}
.x49{left:100.831988pt;}
.x25{left:105.151988pt;}
.x4{left:107.232000pt;}
.xd{left:123.071988pt;}
.x14{left:124.031988pt;}
.x44{left:127.391988pt;}
.x3a{left:130.431988pt;}
.xc{left:135.866655pt;}
.x16{left:152.346655pt;}
.x38{left:160.666667pt;}
.x23{left:164.506655pt;}
.xb{left:167.706655pt;}
.x3b{left:173.786655pt;}
.x15{left:180.986655pt;}
.x36{left:184.826655pt;}
.x3d{left:186.106655pt;}
.x3c{left:191.546655pt;}
.x9{left:205.786655pt;}
.x24{left:213.946655pt;}
.x8{left:222.274667pt;}
.x7{left:226.754667pt;}
.x39{left:261.026667pt;}
.x29{left:275.266667pt;}
.x33{left:321.346667pt;}
.xf{left:354.626655pt;}
.x6{left:367.741333pt;}
.x12{left:376.546655pt;}
.x5{left:379.741333pt;}
.xa{left:396.893322pt;}
.x42{left:400.253322pt;}
.x11{left:420.573322pt;}
.x47{left:422.333322pt;}
.x3f{left:426.013322pt;}
.x46{left:431.453322pt;}
.x40{left:433.533322pt;}
.x18{left:434.973322pt;}
.x1b{left:444.573322pt;}
.x4a{left:449.373322pt;}
.x19{left:468.573322pt;}
.x4b{left:473.373322pt;}
.x1a{left:474.493322pt;}
.x20{left:477.053322pt;}
.x1c{left:502.973322pt;}
.x22{left:507.453322pt;}
.x17{left:527.773322pt;}
.x1d{left:546.333322pt;}
.x1f{left:558.693322pt;}
.x1e{left:564.133322pt;}
.x21{left:587.653322pt;}
.x45{left:755.359988pt;}
.x3e{left:763.039988pt;}
}




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