
    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_bfd69e22979be0a115b41fea.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.884277;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_6dcdfe89be1b7aa0ffadcd67.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.432129;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_73d42b3c24c13d31371f37a5.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_7b4f1e74e6bc268e037945ed.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_0fe10f843dad9a85a52821b9.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_ed9a506b09dfd43320e56d08.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.112305;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_24977210965de72b6185f985.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_d47d70e1b0d04c776253fb45.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.850586;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_2a5905d8dd9158d9652a98d3.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.853027;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_7cb63a99a83e5b5b2c8a20f3.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.062988;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_63f58d70b7dfcb6ab90bde28.woff2')format("woff");}.ffb{font-family:ffb;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;}
.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);}
.v0{vertical-align:0.000000px;}
.lse{letter-spacing:-2.700000px;}
.ls27{letter-spacing:-2.160000px;}
.ls22{letter-spacing:-1.806000px;}
.ls2c{letter-spacing:-1.410000px;}
.lsd{letter-spacing:-1.080000px;}
.ls2a{letter-spacing:-0.750000px;}
.ls11{letter-spacing:-0.702000px;}
.ls6{letter-spacing:-0.540000px;}
.ls15{letter-spacing:-0.375600px;}
.lsc{letter-spacing:-0.352200px;}
.ls9{letter-spacing:-0.233400px;}
.ls8{letter-spacing:-0.012960px;}
.ls0{letter-spacing:0.000000px;}
.ls12{letter-spacing:0.023760px;}
.ls2d{letter-spacing:0.285120px;}
.ls1{letter-spacing:0.352200px;}
.ls19{letter-spacing:0.375600px;}
.ls2{letter-spacing:0.406200px;}
.ls3{letter-spacing:0.612000px;}
.ls10{letter-spacing:0.750000px;}
.lsf{letter-spacing:0.751680px;}
.ls2b{letter-spacing:0.840000px;}
.ls31{letter-spacing:0.871680px;}
.ls2f{letter-spacing:0.931680px;}
.ls4{letter-spacing:0.997920px;}
.ls13{letter-spacing:1.080000px;}
.lsb{letter-spacing:1.620000px;}
.ls1e{letter-spacing:1.782000px;}
.ls1d{letter-spacing:2.184000px;}
.ls7{letter-spacing:2.910000px;}
.ls32{letter-spacing:3.000000px;}
.ls21{letter-spacing:3.031680px;}
.ls30{letter-spacing:3.091680px;}
.ls1f{letter-spacing:3.780000px;}
.ls14{letter-spacing:5.940000px;}
.ls25{letter-spacing:6.060000px;}
.ls23{letter-spacing:8.100000px;}
.ls1c{letter-spacing:10.260000px;}
.ls16{letter-spacing:12.251520px;}
.lsa{letter-spacing:12.420000px;}
.ls24{letter-spacing:14.580000px;}
.ls20{letter-spacing:16.740000px;}
.ls28{letter-spacing:16.860000px;}
.ls5{letter-spacing:18.731520px;}
.ls17{letter-spacing:23.220000px;}
.ls29{letter-spacing:29.700000px;}
.ls2e{letter-spacing:36.476160px;}
.ls1b{letter-spacing:193.992000px;}
.ls18{letter-spacing:194.704800px;}
.ls26{letter-spacing:196.692000px;}
.ls1a{letter-spacing:197.080800px;}
.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;}
}
.wsd{word-spacing:-20.004000px;}
.wse{word-spacing:-19.602000px;}
.ws11{word-spacing:-18.900000px;}
.ws10{word-spacing:-18.817920px;}
.wsc{word-spacing:-18.195600px;}
.ws2{word-spacing:-18.172200px;}
.ws14{word-spacing:-18.105120px;}
.ws9{word-spacing:-17.843760px;}
.ws5{word-spacing:-17.820000px;}
.ws7{word-spacing:-17.467800px;}
.wsa{word-spacing:-17.444400px;}
.ws12{word-spacing:-17.070000px;}
.ws1{word-spacing:-16.740000px;}
.ws13{word-spacing:-16.410000px;}
.wsf{word-spacing:-16.014000px;}
.ws4{word-spacing:-15.744960px;}
.ws3{word-spacing:-15.539160px;}
.wsb{word-spacing:-15.120000px;}
.ws6{word-spacing:-14.886600px;}
.ws8{word-spacing:-14.418000px;}
.ws0{word-spacing:0.000000px;}
._8{margin-left:-13.462080px;}
._b{margin-left:-12.260400px;}
._a{margin-left:-10.010640px;}
._9{margin-left:-6.315840px;}
._7{margin-left:-4.328640px;}
._4{margin-left:-2.527200px;}
._1{margin-left:-1.140480px;}
._0{width:1.615680px;}
._3{width:2.661120px;}
._2{width:4.193280px;}
._10{width:5.324400px;}
._e{width:7.270560px;}
._f{width:8.411040px;}
._16{width:9.592560px;}
._14{width:10.668240px;}
._15{width:12.664080px;}
._1e{width:14.478480px;}
._20{width:15.485040px;}
._19{width:16.715520px;}
._18{width:18.874080px;}
._1d{width:20.671200px;}
._1f{width:21.725280px;}
._11{width:23.712480px;}
._12{width:24.932880px;}
._13{width:26.237520px;}
._17{width:27.295920px;}
._2a{width:28.378080px;}
._1c{width:29.391120px;}
._2c{width:30.507840px;}
._1a{width:31.656960px;}
._1b{width:32.702400px;}
._21{width:34.080480px;}
._22{width:35.753760px;}
._2b{width:36.870000px;}
._28{width:38.336640px;}
._24{width:40.059360px;}
._25{width:41.176080px;}
._23{width:43.156800px;}
._4f{width:49.064400px;}
._26{width:50.831280px;}
._27{width:53.395200px;}
._41{width:55.401600px;}
._3f{width:56.453760px;}
._40{width:57.831840px;}
._52{width:66.258000px;}
._51{width:67.312080px;}
._50{width:69.851040px;}
._4c{width:90.478080px;}
._4e{width:91.763280px;}
._4d{width:92.905680px;}
._35{width:96.907200px;}
._36{width:98.746560px;}
._37{width:99.786720px;}
._46{width:165.249600px;}
._47{width:166.977360px;}
._29{width:176.172000px;}
._2d{width:177.597600px;}
._5{width:185.390880px;}
._6{width:187.598880px;}
._d{width:193.992000px;}
._33{width:202.960320px;}
._34{width:205.579680px;}
._3c{width:234.178560px;}
._3d{width:235.271520px;}
._3e{width:236.305680px;}
._32{width:278.066640px;}
._31{width:280.900680px;}
._4b{width:297.391440px;}
._3a{width:299.428080px;}
._3b{width:300.840480px;}
._30{width:308.452320px;}
._2f{width:309.917040px;}
._48{width:366.316560px;}
._49{width:367.837200px;}
._43{width:407.745360px;}
._44{width:408.894480px;}
._42{width:418.722480px;}
._38{width:420.258480px;}
._39{width:421.336080px;}
._c{width:849.419040px;}
._45{width:969.559200px;}
._4a{width:1994.375520px;}
._2e{width:2121.966720px;}
.fc1{color:rgb(79,129,189);}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:38.880000px;}
.fs4{font-size:47.520000px;}
.fs6{font-size:60.480000px;}
.fs0{font-size:66.960000px;}
.fs3{font-size:71.280000px;}
.fs7{font-size:77.760000px;}
.fs2{font-size:84.240000px;}
.fs1{font-size:95.040000px;}
.y0{bottom:0.000000px;}
.y18{bottom:57.276000px;}
.y17{bottom:76.716000px;}
.y5d{bottom:109.656000px;}
.y9d{bottom:110.196000px;}
.y199{bottom:112.356000px;}
.y137{bottom:114.516000px;}
.y9c{bottom:115.596000px;}
.y11f{bottom:116.676000px;}
.y160{bottom:117.756000px;}
.yb7{bottom:118.836000px;}
.y1be{bottom:119.376000px;}
.y14b{bottom:119.916000px;}
.y1a5{bottom:120.456000px;}
.yf7{bottom:123.156000px;}
.yee{bottom:124.776000px;}
.y5c{bottom:126.936000px;}
.y9b{bottom:129.096000px;}
.yd6{bottom:132.372000px;}
.y17d{bottom:137.232000px;}
.yd9{bottom:139.932000px;}
.y16{bottom:141.552000px;}
.y198{bottom:143.712000px;}
.yca{bottom:144.252000px;}
.y5b{bottom:144.792000px;}
.y136{bottom:145.332000px;}
.y14a{bottom:145.872000px;}
.y7c{bottom:147.492000px;}
.y116{bottom:148.032000px;}
.y15f{bottom:148.572000px;}
.yb6{bottom:149.652000px;}
.y5a{bottom:150.195000px;}
.y14e{bottom:150.735000px;}
.y1ce{bottom:151.815000px;}
.y1a0{bottom:153.975000px;}
.yf6{bottom:154.515000px;}
.yed{bottom:156.135000px;}
.y1b3{bottom:157.755000px;}
.yc9{bottom:161.535000px;}
.yd5{bottom:162.075000px;}
.y59{bottom:162.615000px;}
.y92{bottom:163.695000px;}
.yc8{bottom:166.935000px;}
.y17c{bottom:168.555000px;}
.y147{bottom:169.095000px;}
.yd8{bottom:170.715000px;}
.y149{bottom:171.255000px;}
.y197{bottom:174.495000px;}
.y135{bottom:176.655000px;}
.y7b{bottom:178.815000px;}
.yc7{bottom:179.355000px;}
.y58{bottom:179.895000px;}
.yb5{bottom:180.975000px;}
.y1bd{bottom:181.515000px;}
.y1cd{bottom:182.595000px;}
.y15{bottom:183.135000px;}
.y156{bottom:184.755000px;}
.yf5{bottom:185.295000px;}
.y4a{bottom:185.835000px;}
.yec{bottom:186.915000px;}
.y1b2{bottom:189.075000px;}
.y91{bottom:194.475000px;}
.y57{bottom:197.175000px;}
.y155{bottom:197.715000px;}
.y17b{bottom:199.335000px;}
.y146{bottom:200.415000px;}
.yd4{bottom:202.035000px;}
.y14d{bottom:202.575000px;}
.y196{bottom:205.275000px;}
.y134{bottom:207.435000px;}
.y7a{bottom:209.595000px;}
.y115{bottom:210.135000px;}
.y9a{bottom:210.675000px;}
.yb4{bottom:211.755000px;}
.y1a4{bottom:212.835000px;}
.y56{bottom:214.485000px;}
.y12b{bottom:216.645000px;}
.y49{bottom:217.185000px;}
.yeb{bottom:217.725000px;}
.y14{bottom:224.745000px;}
.y120{bottom:225.285000px;}
.y90{bottom:225.825000px;}
.y1bc{bottom:227.985000px;}
.y14c{bottom:228.525000px;}
.yf4{bottom:229.065000px;}
.y145{bottom:231.225000px;}
.y55{bottom:232.305000px;}
.yd3{bottom:232.845000px;}
.y1b1{bottom:235.005000px;}
.y195{bottom:236.625000px;}
.y54{bottom:237.705000px;}
.y133{bottom:238.785000px;}
.y79{bottom:240.945000px;}
.y114{bottom:241.485000px;}
.y99{bottom:242.025000px;}
.yb3{bottom:243.105000px;}
.y1d4{bottom:243.645000px;}
.y17a{bottom:245.805000px;}
.y19f{bottom:246.345000px;}
.y12a{bottom:247.425000px;}
.y48{bottom:247.965000px;}
.yea{bottom:249.045000px;}
.y53{bottom:250.665000px;}
.yf3{bottom:254.985000px;}
.y8f{bottom:256.605000px;}
.y1a3{bottom:258.765000px;}
.y1cc{bottom:259.845000px;}
.y144{bottom:262.545000px;}
.yd2{bottom:264.165000px;}
.y1b0{bottom:266.325000px;}
.y13{bottom:266.865000px;}
.y132{bottom:269.565000px;}
.y78{bottom:271.725000px;}
.y113{bottom:272.265000px;}
.y98{bottom:272.805000px;}
.yb2{bottom:273.885000px;}
.y179{bottom:276.585000px;}
.y19e{bottom:277.665000px;}
.y129{bottom:278.745000px;}
.y47{bottom:279.285000px;}
.ye9{bottom:279.825000px;}
.yf2{bottom:280.905000px;}
.y194{bottom:282.525000px;}
.y1e3{bottom:286.305000px;}
.y8e{bottom:287.925000px;}
.y1d8{bottom:289.005000px;}
.y1bb{bottom:290.085000px;}
.y163{bottom:292.245000px;}
.y143{bottom:293.325000px;}
.y52{bottom:294.945000px;}
.y131{bottom:300.930000px;}
.y77{bottom:303.090000px;}
.y112{bottom:303.630000px;}
.y97{bottom:304.170000px;}
.yb1{bottom:305.250000px;}
.y1cb{bottom:305.790000px;}
.yf1{bottom:306.870000px;}
.y178{bottom:307.950000px;}
.y12{bottom:308.490000px;}
.y128{bottom:309.570000px;}
.y46{bottom:310.110000px;}
.ye8{bottom:311.190000px;}
.y1af{bottom:312.270000px;}
.y162{bottom:313.350000px;}
.y193{bottom:313.890000px;}
.y8d{bottom:318.750000px;}
.y1d7{bottom:319.830000px;}
.yc6{bottom:320.370000px;}
.y1d3{bottom:320.910000px;}
.y15e{bottom:324.690000px;}
.y51{bottom:326.310000px;}
.y130{bottom:331.710000px;}
.y76{bottom:333.870000px;}
.y111{bottom:334.410000px;}
.y148{bottom:336.030000px;}
.y1ca{bottom:337.110000px;}
.y177{bottom:338.730000px;}
.y142{bottom:339.810000px;}
.y45{bottom:341.430000px;}
.ye7{bottom:341.970000px;}
.y192{bottom:344.670000px;}
.y11e{bottom:348.990000px;}
.y11{bottom:349.530000px;}
.y8c{bottom:350.070000px;}
.yb0{bottom:351.150000px;}
.y1d2{bottom:352.230000px;}
.y127{bottom:353.310000px;}
.y161{bottom:354.390000px;}
.y15d{bottom:355.470000px;}
.yf0{bottom:357.090000px;}
.y1ae{bottom:358.170000px;}
.y75{bottom:365.190000px;}
.y1d6{bottom:366.270000px;}
.y1ba{bottom:366.810000px;}
.y1c9{bottom:367.890000px;}
.y176{bottom:370.050000px;}
.y141{bottom:370.590000px;}
.y44{bottom:372.210000px;}
.ye6{bottom:373.290000px;}
.y12f{bottom:375.450000px;}
.y191{bottom:375.990000px;}
.y1e2{bottom:378.150000px;}
.y126{bottom:379.230000px;}
.y11d{bottom:379.770000px;}
.y110{bottom:380.310000px;}
.y8b{bottom:380.850000px;}
.yaf{bottom:382.500000px;}
.y1d1{bottom:383.040000px;}
.y15c{bottom:386.820000px;}
.y10{bottom:388.440000px;}
.y1ad{bottom:389.520000px;}
.y74{bottom:396.000000px;}
.y153{bottom:396.540000px;}
.y1a2{bottom:397.080000px;}
.y1c8{bottom:399.240000px;}
.y175{bottom:400.860000px;}
.y12e{bottom:401.400000px;}
.y140{bottom:401.940000px;}
.y43{bottom:403.560000px;}
.y125{bottom:405.180000px;}
.y190{bottom:406.800000px;}
.y11c{bottom:411.120000px;}
.y10f{bottom:411.660000px;}
.y96{bottom:412.200000px;}
.yae{bottom:413.280000px;}
.y19b{bottom:416.520000px;}
.y15b{bottom:417.600000px;}
.ye5{bottom:419.220000px;}
.y73{bottom:427.320000px;}
.y1d5{bottom:428.400000px;}
.y1d0{bottom:428.940000px;}
.yf{bottom:430.020000px;}
.y124{bottom:431.100000px;}
.y13f{bottom:432.720000px;}
.y42{bottom:434.340000px;}
.y1ac{bottom:435.420000px;}
.y19a{bottom:437.580000px;}
.y18f{bottom:438.120000px;}
.y11b{bottom:441.900000px;}
.y10e{bottom:442.440000px;}
.y95{bottom:442.980000px;}
.y1b9{bottom:444.060000px;}
.yad{bottom:444.600000px;}
.y1c7{bottom:445.140000px;}
.y174{bottom:446.760000px;}
.ye4{bottom:450.540000px;}
.y12d{bottom:453.240000px;}
.y72{bottom:458.100000px;}
.y1cf{bottom:460.260000px;}
.y15a{bottom:461.340000px;}
.y1e1{bottom:463.500000px;}
.y13e{bottom:464.040000px;}
.y41{bottom:465.660000px;}
.y1ab{bottom:466.230000px;}
.y18e{bottom:468.930000px;}
.ye{bottom:471.090000px;}
.y11a{bottom:473.250000px;}
.y10d{bottom:473.790000px;}
.y93{bottom:474.330000px;}
.yac{bottom:475.410000px;}
.y1c6{bottom:476.490000px;}
.y173{bottom:478.110000px;}
.y94{bottom:480.270000px;}
.ye3{bottom:481.350000px;}
.y159{bottom:487.290000px;}
.y71{bottom:489.450000px;}
.yc5{bottom:490.530000px;}
.y13d{bottom:494.850000px;}
.y40{bottom:496.470000px;}
.y1aa{bottom:497.550000px;}
.y18d{bottom:500.250000px;}
.yd1{bottom:502.410000px;}
.ydb{bottom:504.030000px;}
.y10c{bottom:504.570000px;}
.y2e{bottom:505.110000px;}
.y1b8{bottom:506.190000px;}
.yab{bottom:506.730000px;}
.y172{bottom:508.890000px;}
.y1e0{bottom:509.430000px;}
.yd{bottom:509.970000px;}
.ye2{bottom:512.670000px;}
.y158{bottom:513.210000px;}
.y70{bottom:520.230000px;}
.yc4{bottom:521.310000px;}
.y1c5{bottom:522.390000px;}
.y13c{bottom:526.170000px;}
.y3f{bottom:527.790000px;}
.y1a9{bottom:528.330000px;}
.y18c{bottom:531.030000px;}
.yda{bottom:535.350000px;}
.yef{bottom:535.890000px;}
.y123{bottom:536.430000px;}
.yaa{bottom:537.510000px;}
.y157{bottom:539.130000px;}
.y171{bottom:540.210000px;}
.y2d{bottom:542.910000px;}
.ye1{bottom:543.450000px;}
.yc{bottom:551.595000px;}
.yc3{bottom:552.675000px;}
.y1df{bottom:555.375000px;}
.y19d{bottom:556.995000px;}
.y3e{bottom:558.615000px;}
.y18b{bottom:562.395000px;}
.yba{bottom:566.175000px;}
.y10b{bottom:566.715000px;}
.y122{bottom:567.255000px;}
.y1c4{bottom:568.335000px;}
.ya9{bottom:568.875000px;}
.y13b{bottom:569.415000px;}
.y170{bottom:571.035000px;}
.y2c{bottom:573.735000px;}
.ye0{bottom:574.815000px;}
.y152{bottom:580.215000px;}
.yb{bottom:581.835000px;}
.y6f{bottom:582.375000px;}
.yc2{bottom:583.455000px;}
.y19c{bottom:588.315000px;}
.yd0{bottom:589.395000px;}
.y18a{bottom:593.175000px;}
.y13a{bottom:595.335000px;}
.yb9{bottom:597.495000px;}
.y10a{bottom:598.035000px;}
.y121{bottom:598.575000px;}
.ya8{bottom:599.655000px;}
.y1de{bottom:601.815000px;}
.y16f{bottom:602.355000px;}
.y2b{bottom:604.515000px;}
.ydf{bottom:605.595000px;}
.y6e{bottom:613.695000px;}
.yc1{bottom:614.775000px;}
.ycf{bottom:620.715000px;}
.y139{bottom:621.255000px;}
.ya{bottom:623.415000px;}
.y16e{bottom:625.575000px;}
.yb8{bottom:628.275000px;}
.y109{bottom:628.815000px;}
.y1c3{bottom:630.435000px;}
.ya7{bottom:630.975000px;}
.y151{bottom:631.515000px;}
.y2a{bottom:635.325000px;}
.y3d{bottom:635.865000px;}
.yde{bottom:636.945000px;}
.y189{bottom:639.105000px;}
.y8a{bottom:644.505000px;}
.yc0{bottom:645.585000px;}
.y138{bottom:647.205000px;}
.y1dd{bottom:647.745000px;}
.y16d{bottom:649.365000px;}
.yce{bottom:651.525000px;}
.y29{bottom:657.465000px;}
.y6d{bottom:659.625000px;}
.ydd{bottom:660.165000px;}
.y9{bottom:665.025000px;}
.y3c{bottom:666.645000px;}
.y1a8{bottom:667.725000px;}
.y188{bottom:670.425000px;}
.y89{bottom:675.825000px;}
.ya6{bottom:676.905000px;}
.yfa{bottom:682.845000px;}
.y150{bottom:683.385000px;}
.y28{bottom:687.705000px;}
.y6c{bottom:690.405000px;}
.y108{bottom:690.945000px;}
.y1dc{bottom:693.645000px;}
.y3b{bottom:697.965000px;}
.y187{bottom:701.205000px;}
.y88{bottom:706.605000px;}
.y8{bottom:707.145000px;}
.ya5{bottom:707.685000px;}
.y14f{bottom:709.305000px;}
.yf9{bottom:713.625000px;}
.y16c{bottom:716.865000px;}
.y27{bottom:718.530000px;}
.y6b{bottom:721.770000px;}
.y107{bottom:722.310000px;}
.y1b7{bottom:722.850000px;}
.y3a{bottom:728.790000px;}
.ybf{bottom:730.950000px;}
.y186{bottom:732.570000px;}
.y119{bottom:736.890000px;}
.yf8{bottom:737.430000px;}
.y87{bottom:737.970000px;}
.y1c2{bottom:738.510000px;}
.ya4{bottom:739.050000px;}
.y1db{bottom:739.590000px;}
.y1a1{bottom:744.990000px;}
.y16b{bottom:748.230000px;}
.y7{bottom:748.770000px;}
.y26{bottom:749.310000px;}
.y6a{bottom:752.550000px;}
.y106{bottom:753.090000px;}
.y1b6{bottom:753.630000px;}
.y39{bottom:760.110000px;}
.y185{bottom:763.350000px;}
.y118{bottom:767.670000px;}
.y86{bottom:768.750000px;}
.ya3{bottom:769.830000px;}
.y1a7{bottom:775.770000px;}
.y16a{bottom:779.010000px;}
.y25{bottom:779.550000px;}
.y69{bottom:783.870000px;}
.y105{bottom:784.410000px;}
.y1b5{bottom:784.950000px;}
.y1da{bottom:786.030000px;}
.y6{bottom:790.890000px;}
.y184{bottom:794.670000px;}
.ybe{bottom:798.990000px;}
.y85{bottom:800.070000px;}
.ya2{bottom:801.150000px;}
.y154{bottom:804.960000px;}
.y1a6{bottom:807.120000px;}
.y24{bottom:810.360000px;}
.yd7{bottom:814.140000px;}
.y68{bottom:814.680000px;}
.y1b4{bottom:815.760000px;}
.y50{bottom:822.240000px;}
.y183{bottom:825.480000px;}
.ybd{bottom:829.800000px;}
.y104{bottom:830.340000px;}
.y84{bottom:830.880000px;}
.ya1{bottom:831.960000px;}
.y5{bottom:832.500000px;}
.y38{bottom:837.360000px;}
.y23{bottom:841.140000px;}
.y67{bottom:846.000000px;}
.y1c1{bottom:847.080000px;}
.y4f{bottom:853.020000px;}
.y182{bottom:856.800000px;}
.ybc{bottom:861.120000px;}
.y103{bottom:861.660000px;}
.y83{bottom:862.200000px;}
.ya0{bottom:863.280000px;}
.y37{bottom:868.140000px;}
.y22{bottom:871.920000px;}
.y169{bottom:872.460000px;}
.y4{bottom:874.080000px;}
.y66{bottom:876.780000px;}
.y1d9{bottom:877.860000px;}
.y4e{bottom:884.340000px;}
.ybb{bottom:891.930000px;}
.y102{bottom:892.470000px;}
.ydc{bottom:893.010000px;}
.y9f{bottom:894.090000px;}
.y36{bottom:899.490000px;}
.y181{bottom:900.570000px;}
.y21{bottom:902.190000px;}
.y168{bottom:903.270000px;}
.y117{bottom:907.590000px;}
.y82{bottom:908.130000px;}
.y4d{bottom:915.150000px;}
.y3{bottom:916.230000px;}
.y9e{bottom:917.310000px;}
.y65{bottom:923.250000px;}
.y101{bottom:923.790000px;}
.y1c0{bottom:924.330000px;}
.y180{bottom:926.490000px;}
.y35{bottom:930.270000px;}
.y20{bottom:932.970000px;}
.y81{bottom:938.910000px;}
.ycd{bottom:946.470000px;}
.y167{bottom:948.630000px;}
.y2{bottom:951.870000px;}
.y64{bottom:954.030000px;}
.y100{bottom:954.570000px;}
.y1bf{bottom:955.110000px;}
.y34{bottom:961.590000px;}
.y1f{bottom:963.750000px;}
.y4c{bottom:967.530000px;}
.y12c{bottom:969.690000px;}
.y80{bottom:970.230000px;}
.y166{bottom:976.215000px;}
.ycc{bottom:977.295000px;}
.y17f{bottom:977.835000px;}
.y63{bottom:985.395000px;}
.yff{bottom:985.935000px;}
.y33{bottom:992.415000px;}
.y1e{bottom:994.575000px;}
.y7f{bottom:1001.055000px;}
.y17e{bottom:1003.755000px;}
.y165{bottom:1004.835000px;}
.ycb{bottom:1006.995000px;}
.y62{bottom:1016.175000px;}
.yfe{bottom:1016.715000px;}
.y32{bottom:1023.195000px;}
.y1d{bottom:1025.355000px;}
.y4b{bottom:1029.135000px;}
.y7e{bottom:1032.375000px;}
.y164{bottom:1033.455000px;}
.y61{bottom:1047.495000px;}
.yfd{bottom:1048.035000px;}
.y31{bottom:1054.515000px;}
.y1c{bottom:1055.625000px;}
.y7d{bottom:1063.185000px;}
.y60{bottom:1078.305000px;}
.y30{bottom:1085.325000px;}
.y1b{bottom:1086.405000px;}
.yfc{bottom:1091.265000px;}
.y5f{bottom:1109.625000px;}
.y2f{bottom:1116.645000px;}
.y1a{bottom:1117.185000px;}
.y19{bottom:1139.910000px;}
.y5e{bottom:1140.450000px;}
.y1{bottom:1140.990000px;}
.yfb{bottom:1143.150000px;}
.ha{height:29.482734px;}
.hc{height:38.158594px;}
.h8{height:46.638281px;}
.h2{height:50.775820px;}
.hf{height:54.219375px;}
.hb{height:59.357813px;}
.h10{height:60.028594px;}
.h9{height:63.901406px;}
.hd{height:65.534063px;}
.h5{height:65.717578px;}
.he{height:69.922617px;}
.h7{height:69.957422px;}
.h6{height:71.836875px;}
.h11{height:73.264608px;}
.h4{height:87.859687px;}
.h3{height:99.123750px;}
.h1{height:1263.000000px;}
.h0{height:1263.060000px;}
.w3{width:893.159973px;}
.w2{width:893.159987px;}
.w0{width:893.160000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1{left:127.511987px;}
.x17{left:132.371987px;}
.x6{left:134.531987px;}
.xe{left:144.251987px;}
.xc{left:146.951987px;}
.x24{left:159.404987px;}
.xf{left:160.484987px;}
.x10{left:180.464987px;}
.x11{left:191.264987px;}
.x12{left:216.689973px;}
.x13{left:222.629987px;}
.x21{left:233.969987px;}
.x5{left:243.689987px;}
.xb{left:271.799987px;}
.x1b{left:275.579973px;}
.x4{left:277.739987px;}
.x1c{left:281.519987px;}
.x9{left:317.699987px;}
.x16{left:343.649987px;}
.x1d{left:381.449973px;}
.x1e{left:387.434987px;}
.x7{left:400.934987px;}
.x8{left:412.814987px;}
.xa{left:413.894987px;}
.x3{left:446.324987px;}
.x14{left:456.584973px;}
.x15{left:462.524987px;}
.x1f{left:503.024973px;}
.x22{left:504.689973px;}
.x20{left:509.009987px;}
.x23{left:510.629987px;}
.x2{left:706.754987px;}
.x18{left:726.734973px;}
.x19{left:732.674987px;}
.x1a{left:748.904987px;}
.xd{left:757.544987px;}
@media print{
.v0{vertical-align:0.000000pt;}
.lse{letter-spacing:-2.400000pt;}
.ls27{letter-spacing:-1.920000pt;}
.ls22{letter-spacing:-1.605333pt;}
.ls2c{letter-spacing:-1.253333pt;}
.lsd{letter-spacing:-0.960000pt;}
.ls2a{letter-spacing:-0.666667pt;}
.ls11{letter-spacing:-0.624000pt;}
.ls6{letter-spacing:-0.480000pt;}
.ls15{letter-spacing:-0.333867pt;}
.lsc{letter-spacing:-0.313067pt;}
.ls9{letter-spacing:-0.207467pt;}
.ls8{letter-spacing:-0.011520pt;}
.ls0{letter-spacing:0.000000pt;}
.ls12{letter-spacing:0.021120pt;}
.ls2d{letter-spacing:0.253440pt;}
.ls1{letter-spacing:0.313067pt;}
.ls19{letter-spacing:0.333867pt;}
.ls2{letter-spacing:0.361067pt;}
.ls3{letter-spacing:0.544000pt;}
.ls10{letter-spacing:0.666667pt;}
.lsf{letter-spacing:0.668160pt;}
.ls2b{letter-spacing:0.746667pt;}
.ls31{letter-spacing:0.774827pt;}
.ls2f{letter-spacing:0.828160pt;}
.ls4{letter-spacing:0.887040pt;}
.ls13{letter-spacing:0.960000pt;}
.lsb{letter-spacing:1.440000pt;}
.ls1e{letter-spacing:1.584000pt;}
.ls1d{letter-spacing:1.941333pt;}
.ls7{letter-spacing:2.586667pt;}
.ls32{letter-spacing:2.666667pt;}
.ls21{letter-spacing:2.694827pt;}
.ls30{letter-spacing:2.748160pt;}
.ls1f{letter-spacing:3.360000pt;}
.ls14{letter-spacing:5.280000pt;}
.ls25{letter-spacing:5.386667pt;}
.ls23{letter-spacing:7.200000pt;}
.ls1c{letter-spacing:9.120000pt;}
.ls16{letter-spacing:10.890240pt;}
.lsa{letter-spacing:11.040000pt;}
.ls24{letter-spacing:12.960000pt;}
.ls20{letter-spacing:14.880000pt;}
.ls28{letter-spacing:14.986667pt;}
.ls5{letter-spacing:16.650240pt;}
.ls17{letter-spacing:20.640000pt;}
.ls29{letter-spacing:26.400000pt;}
.ls2e{letter-spacing:32.423253pt;}
.ls1b{letter-spacing:172.437333pt;}
.ls18{letter-spacing:173.070933pt;}
.ls26{letter-spacing:174.837333pt;}
.ls1a{letter-spacing:175.182933pt;}
.wsd{word-spacing:-17.781333pt;}
.wse{word-spacing:-17.424000pt;}
.ws11{word-spacing:-16.800000pt;}
.ws10{word-spacing:-16.727040pt;}
.wsc{word-spacing:-16.173867pt;}
.ws2{word-spacing:-16.153067pt;}
.ws14{word-spacing:-16.093440pt;}
.ws9{word-spacing:-15.861120pt;}
.ws5{word-spacing:-15.840000pt;}
.ws7{word-spacing:-15.526933pt;}
.wsa{word-spacing:-15.506133pt;}
.ws12{word-spacing:-15.173333pt;}
.ws1{word-spacing:-14.880000pt;}
.ws13{word-spacing:-14.586667pt;}
.wsf{word-spacing:-14.234667pt;}
.ws4{word-spacing:-13.995520pt;}
.ws3{word-spacing:-13.812587pt;}
.wsb{word-spacing:-13.440000pt;}
.ws6{word-spacing:-13.232533pt;}
.ws8{word-spacing:-12.816000pt;}
.ws0{word-spacing:0.000000pt;}
._8{margin-left:-11.966293pt;}
._b{margin-left:-10.898133pt;}
._a{margin-left:-8.898347pt;}
._9{margin-left:-5.614080pt;}
._7{margin-left:-3.847680pt;}
._4{margin-left:-2.246400pt;}
._1{margin-left:-1.013760pt;}
._0{width:1.436160pt;}
._3{width:2.365440pt;}
._2{width:3.727360pt;}
._10{width:4.732800pt;}
._e{width:6.462720pt;}
._f{width:7.476480pt;}
._16{width:8.526720pt;}
._14{width:9.482880pt;}
._15{width:11.256960pt;}
._1e{width:12.869760pt;}
._20{width:13.764480pt;}
._19{width:14.858240pt;}
._18{width:16.776960pt;}
._1d{width:18.374400pt;}
._1f{width:19.311360pt;}
._11{width:21.077760pt;}
._12{width:22.162560pt;}
._13{width:23.322240pt;}
._17{width:24.263040pt;}
._2a{width:25.224960pt;}
._1c{width:26.125440pt;}
._2c{width:27.118080pt;}
._1a{width:28.139520pt;}
._1b{width:29.068800pt;}
._21{width:30.293760pt;}
._22{width:31.781120pt;}
._2b{width:32.773333pt;}
._28{width:34.077013pt;}
._24{width:35.608320pt;}
._25{width:36.600960pt;}
._23{width:38.361600pt;}
._4f{width:43.612800pt;}
._26{width:45.183360pt;}
._27{width:47.462400pt;}
._41{width:49.245867pt;}
._3f{width:50.181120pt;}
._40{width:51.406080pt;}
._52{width:58.896000pt;}
._51{width:59.832960pt;}
._50{width:62.089813pt;}
._4c{width:80.424960pt;}
._4e{width:81.567360pt;}
._4d{width:82.582827pt;}
._35{width:86.139733pt;}
._36{width:87.774720pt;}
._37{width:88.699307pt;}
._46{width:146.888533pt;}
._47{width:148.424320pt;}
._29{width:156.597333pt;}
._2d{width:157.864533pt;}
._5{width:164.791893pt;}
._6{width:166.754560pt;}
._d{width:172.437333pt;}
._33{width:180.409173pt;}
._34{width:182.737493pt;}
._3c{width:208.158720pt;}
._3d{width:209.130240pt;}
._3e{width:210.049493pt;}
._32{width:247.170347pt;}
._31{width:249.689493pt;}
._4b{width:264.347947pt;}
._3a{width:266.158293pt;}
._3b{width:267.413760pt;}
._30{width:274.179840pt;}
._2f{width:275.481813pt;}
._48{width:325.614720pt;}
._49{width:326.966400pt;}
._43{width:362.440320pt;}
._44{width:363.461760pt;}
._42{width:372.197760pt;}
._38{width:373.563093pt;}
._39{width:374.520960pt;}
._c{width:755.039147pt;}
._45{width:861.830400pt;}
._4a{width:1772.778240pt;}
._2e{width:1886.192640pt;}
.fs5{font-size:34.560000pt;}
.fs4{font-size:42.240000pt;}
.fs6{font-size:53.760000pt;}
.fs0{font-size:59.520000pt;}
.fs3{font-size:63.360000pt;}
.fs7{font-size:69.120000pt;}
.fs2{font-size:74.880000pt;}
.fs1{font-size:84.480000pt;}
.y0{bottom:0.000000pt;}
.y18{bottom:50.912000pt;}
.y17{bottom:68.192000pt;}
.y5d{bottom:97.472000pt;}
.y9d{bottom:97.952000pt;}
.y199{bottom:99.872000pt;}
.y137{bottom:101.792000pt;}
.y9c{bottom:102.752000pt;}
.y11f{bottom:103.712000pt;}
.y160{bottom:104.672000pt;}
.yb7{bottom:105.632000pt;}
.y1be{bottom:106.112000pt;}
.y14b{bottom:106.592000pt;}
.y1a5{bottom:107.072000pt;}
.yf7{bottom:109.472000pt;}
.yee{bottom:110.912000pt;}
.y5c{bottom:112.832000pt;}
.y9b{bottom:114.752000pt;}
.yd6{bottom:117.664000pt;}
.y17d{bottom:121.984000pt;}
.yd9{bottom:124.384000pt;}
.y16{bottom:125.824000pt;}
.y198{bottom:127.744000pt;}
.yca{bottom:128.224000pt;}
.y5b{bottom:128.704000pt;}
.y136{bottom:129.184000pt;}
.y14a{bottom:129.664000pt;}
.y7c{bottom:131.104000pt;}
.y116{bottom:131.584000pt;}
.y15f{bottom:132.064000pt;}
.yb6{bottom:133.024000pt;}
.y5a{bottom:133.506667pt;}
.y14e{bottom:133.986667pt;}
.y1ce{bottom:134.946667pt;}
.y1a0{bottom:136.866667pt;}
.yf6{bottom:137.346667pt;}
.yed{bottom:138.786667pt;}
.y1b3{bottom:140.226667pt;}
.yc9{bottom:143.586667pt;}
.yd5{bottom:144.066667pt;}
.y59{bottom:144.546667pt;}
.y92{bottom:145.506667pt;}
.yc8{bottom:148.386667pt;}
.y17c{bottom:149.826667pt;}
.y147{bottom:150.306667pt;}
.yd8{bottom:151.746667pt;}
.y149{bottom:152.226667pt;}
.y197{bottom:155.106667pt;}
.y135{bottom:157.026667pt;}
.y7b{bottom:158.946667pt;}
.yc7{bottom:159.426667pt;}
.y58{bottom:159.906667pt;}
.yb5{bottom:160.866667pt;}
.y1bd{bottom:161.346667pt;}
.y1cd{bottom:162.306667pt;}
.y15{bottom:162.786667pt;}
.y156{bottom:164.226667pt;}
.yf5{bottom:164.706667pt;}
.y4a{bottom:165.186667pt;}
.yec{bottom:166.146667pt;}
.y1b2{bottom:168.066667pt;}
.y91{bottom:172.866667pt;}
.y57{bottom:175.266667pt;}
.y155{bottom:175.746667pt;}
.y17b{bottom:177.186667pt;}
.y146{bottom:178.146667pt;}
.yd4{bottom:179.586667pt;}
.y14d{bottom:180.066667pt;}
.y196{bottom:182.466667pt;}
.y134{bottom:184.386667pt;}
.y7a{bottom:186.306667pt;}
.y115{bottom:186.786667pt;}
.y9a{bottom:187.266667pt;}
.yb4{bottom:188.226667pt;}
.y1a4{bottom:189.186667pt;}
.y56{bottom:190.653333pt;}
.y12b{bottom:192.573333pt;}
.y49{bottom:193.053333pt;}
.yeb{bottom:193.533333pt;}
.y14{bottom:199.773333pt;}
.y120{bottom:200.253333pt;}
.y90{bottom:200.733333pt;}
.y1bc{bottom:202.653333pt;}
.y14c{bottom:203.133333pt;}
.yf4{bottom:203.613333pt;}
.y145{bottom:205.533333pt;}
.y55{bottom:206.493333pt;}
.yd3{bottom:206.973333pt;}
.y1b1{bottom:208.893333pt;}
.y195{bottom:210.333333pt;}
.y54{bottom:211.293333pt;}
.y133{bottom:212.253333pt;}
.y79{bottom:214.173333pt;}
.y114{bottom:214.653333pt;}
.y99{bottom:215.133333pt;}
.yb3{bottom:216.093333pt;}
.y1d4{bottom:216.573333pt;}
.y17a{bottom:218.493333pt;}
.y19f{bottom:218.973333pt;}
.y12a{bottom:219.933333pt;}
.y48{bottom:220.413333pt;}
.yea{bottom:221.373333pt;}
.y53{bottom:222.813333pt;}
.yf3{bottom:226.653333pt;}
.y8f{bottom:228.093333pt;}
.y1a3{bottom:230.013333pt;}
.y1cc{bottom:230.973333pt;}
.y144{bottom:233.373333pt;}
.yd2{bottom:234.813333pt;}
.y1b0{bottom:236.733333pt;}
.y13{bottom:237.213333pt;}
.y132{bottom:239.613333pt;}
.y78{bottom:241.533333pt;}
.y113{bottom:242.013333pt;}
.y98{bottom:242.493333pt;}
.yb2{bottom:243.453333pt;}
.y179{bottom:245.853333pt;}
.y19e{bottom:246.813333pt;}
.y129{bottom:247.773333pt;}
.y47{bottom:248.253333pt;}
.ye9{bottom:248.733333pt;}
.yf2{bottom:249.693333pt;}
.y194{bottom:251.133333pt;}
.y1e3{bottom:254.493333pt;}
.y8e{bottom:255.933333pt;}
.y1d8{bottom:256.893333pt;}
.y1bb{bottom:257.853333pt;}
.y163{bottom:259.773333pt;}
.y143{bottom:260.733333pt;}
.y52{bottom:262.173333pt;}
.y131{bottom:267.493333pt;}
.y77{bottom:269.413333pt;}
.y112{bottom:269.893333pt;}
.y97{bottom:270.373333pt;}
.yb1{bottom:271.333333pt;}
.y1cb{bottom:271.813333pt;}
.yf1{bottom:272.773333pt;}
.y178{bottom:273.733333pt;}
.y12{bottom:274.213333pt;}
.y128{bottom:275.173333pt;}
.y46{bottom:275.653333pt;}
.ye8{bottom:276.613333pt;}
.y1af{bottom:277.573333pt;}
.y162{bottom:278.533333pt;}
.y193{bottom:279.013333pt;}
.y8d{bottom:283.333333pt;}
.y1d7{bottom:284.293333pt;}
.yc6{bottom:284.773333pt;}
.y1d3{bottom:285.253333pt;}
.y15e{bottom:288.613333pt;}
.y51{bottom:290.053333pt;}
.y130{bottom:294.853333pt;}
.y76{bottom:296.773333pt;}
.y111{bottom:297.253333pt;}
.y148{bottom:298.693333pt;}
.y1ca{bottom:299.653333pt;}
.y177{bottom:301.093333pt;}
.y142{bottom:302.053333pt;}
.y45{bottom:303.493333pt;}
.ye7{bottom:303.973333pt;}
.y192{bottom:306.373333pt;}
.y11e{bottom:310.213333pt;}
.y11{bottom:310.693333pt;}
.y8c{bottom:311.173333pt;}
.yb0{bottom:312.133333pt;}
.y1d2{bottom:313.093333pt;}
.y127{bottom:314.053333pt;}
.y161{bottom:315.013333pt;}
.y15d{bottom:315.973333pt;}
.yf0{bottom:317.413333pt;}
.y1ae{bottom:318.373333pt;}
.y75{bottom:324.613333pt;}
.y1d6{bottom:325.573333pt;}
.y1ba{bottom:326.053333pt;}
.y1c9{bottom:327.013333pt;}
.y176{bottom:328.933333pt;}
.y141{bottom:329.413333pt;}
.y44{bottom:330.853333pt;}
.ye6{bottom:331.813333pt;}
.y12f{bottom:333.733333pt;}
.y191{bottom:334.213333pt;}
.y1e2{bottom:336.133333pt;}
.y126{bottom:337.093333pt;}
.y11d{bottom:337.573333pt;}
.y110{bottom:338.053333pt;}
.y8b{bottom:338.533333pt;}
.yaf{bottom:340.000000pt;}
.y1d1{bottom:340.480000pt;}
.y15c{bottom:343.840000pt;}
.y10{bottom:345.280000pt;}
.y1ad{bottom:346.240000pt;}
.y74{bottom:352.000000pt;}
.y153{bottom:352.480000pt;}
.y1a2{bottom:352.960000pt;}
.y1c8{bottom:354.880000pt;}
.y175{bottom:356.320000pt;}
.y12e{bottom:356.800000pt;}
.y140{bottom:357.280000pt;}
.y43{bottom:358.720000pt;}
.y125{bottom:360.160000pt;}
.y190{bottom:361.600000pt;}
.y11c{bottom:365.440000pt;}
.y10f{bottom:365.920000pt;}
.y96{bottom:366.400000pt;}
.yae{bottom:367.360000pt;}
.y19b{bottom:370.240000pt;}
.y15b{bottom:371.200000pt;}
.ye5{bottom:372.640000pt;}
.y73{bottom:379.840000pt;}
.y1d5{bottom:380.800000pt;}
.y1d0{bottom:381.280000pt;}
.yf{bottom:382.240000pt;}
.y124{bottom:383.200000pt;}
.y13f{bottom:384.640000pt;}
.y42{bottom:386.080000pt;}
.y1ac{bottom:387.040000pt;}
.y19a{bottom:388.960000pt;}
.y18f{bottom:389.440000pt;}
.y11b{bottom:392.800000pt;}
.y10e{bottom:393.280000pt;}
.y95{bottom:393.760000pt;}
.y1b9{bottom:394.720000pt;}
.yad{bottom:395.200000pt;}
.y1c7{bottom:395.680000pt;}
.y174{bottom:397.120000pt;}
.ye4{bottom:400.480000pt;}
.y12d{bottom:402.880000pt;}
.y72{bottom:407.200000pt;}
.y1cf{bottom:409.120000pt;}
.y15a{bottom:410.080000pt;}
.y1e1{bottom:412.000000pt;}
.y13e{bottom:412.480000pt;}
.y41{bottom:413.920000pt;}
.y1ab{bottom:414.426667pt;}
.y18e{bottom:416.826667pt;}
.ye{bottom:418.746667pt;}
.y11a{bottom:420.666667pt;}
.y10d{bottom:421.146667pt;}
.y93{bottom:421.626667pt;}
.yac{bottom:422.586667pt;}
.y1c6{bottom:423.546667pt;}
.y173{bottom:424.986667pt;}
.y94{bottom:426.906667pt;}
.ye3{bottom:427.866667pt;}
.y159{bottom:433.146667pt;}
.y71{bottom:435.066667pt;}
.yc5{bottom:436.026667pt;}
.y13d{bottom:439.866667pt;}
.y40{bottom:441.306667pt;}
.y1aa{bottom:442.266667pt;}
.y18d{bottom:444.666667pt;}
.yd1{bottom:446.586667pt;}
.ydb{bottom:448.026667pt;}
.y10c{bottom:448.506667pt;}
.y2e{bottom:448.986667pt;}
.y1b8{bottom:449.946667pt;}
.yab{bottom:450.426667pt;}
.y172{bottom:452.346667pt;}
.y1e0{bottom:452.826667pt;}
.yd{bottom:453.306667pt;}
.ye2{bottom:455.706667pt;}
.y158{bottom:456.186667pt;}
.y70{bottom:462.426667pt;}
.yc4{bottom:463.386667pt;}
.y1c5{bottom:464.346667pt;}
.y13c{bottom:467.706667pt;}
.y3f{bottom:469.146667pt;}
.y1a9{bottom:469.626667pt;}
.y18c{bottom:472.026667pt;}
.yda{bottom:475.866667pt;}
.yef{bottom:476.346667pt;}
.y123{bottom:476.826667pt;}
.yaa{bottom:477.786667pt;}
.y157{bottom:479.226667pt;}
.y171{bottom:480.186667pt;}
.y2d{bottom:482.586667pt;}
.ye1{bottom:483.066667pt;}
.yc{bottom:490.306667pt;}
.yc3{bottom:491.266667pt;}
.y1df{bottom:493.666667pt;}
.y19d{bottom:495.106667pt;}
.y3e{bottom:496.546667pt;}
.y18b{bottom:499.906667pt;}
.yba{bottom:503.266667pt;}
.y10b{bottom:503.746667pt;}
.y122{bottom:504.226667pt;}
.y1c4{bottom:505.186667pt;}
.ya9{bottom:505.666667pt;}
.y13b{bottom:506.146667pt;}
.y170{bottom:507.586667pt;}
.y2c{bottom:509.986667pt;}
.ye0{bottom:510.946667pt;}
.y152{bottom:515.746667pt;}
.yb{bottom:517.186667pt;}
.y6f{bottom:517.666667pt;}
.yc2{bottom:518.626667pt;}
.y19c{bottom:522.946667pt;}
.yd0{bottom:523.906667pt;}
.y18a{bottom:527.266667pt;}
.y13a{bottom:529.186667pt;}
.yb9{bottom:531.106667pt;}
.y10a{bottom:531.586667pt;}
.y121{bottom:532.066667pt;}
.ya8{bottom:533.026667pt;}
.y1de{bottom:534.946667pt;}
.y16f{bottom:535.426667pt;}
.y2b{bottom:537.346667pt;}
.ydf{bottom:538.306667pt;}
.y6e{bottom:545.506667pt;}
.yc1{bottom:546.466667pt;}
.ycf{bottom:551.746667pt;}
.y139{bottom:552.226667pt;}
.ya{bottom:554.146667pt;}
.y16e{bottom:556.066667pt;}
.yb8{bottom:558.466667pt;}
.y109{bottom:558.946667pt;}
.y1c3{bottom:560.386667pt;}
.ya7{bottom:560.866667pt;}
.y151{bottom:561.346667pt;}
.y2a{bottom:564.733333pt;}
.y3d{bottom:565.213333pt;}
.yde{bottom:566.173333pt;}
.y189{bottom:568.093333pt;}
.y8a{bottom:572.893333pt;}
.yc0{bottom:573.853333pt;}
.y138{bottom:575.293333pt;}
.y1dd{bottom:575.773333pt;}
.y16d{bottom:577.213333pt;}
.yce{bottom:579.133333pt;}
.y29{bottom:584.413333pt;}
.y6d{bottom:586.333333pt;}
.ydd{bottom:586.813333pt;}
.y9{bottom:591.133333pt;}
.y3c{bottom:592.573333pt;}
.y1a8{bottom:593.533333pt;}
.y188{bottom:595.933333pt;}
.y89{bottom:600.733333pt;}
.ya6{bottom:601.693333pt;}
.yfa{bottom:606.973333pt;}
.y150{bottom:607.453333pt;}
.y28{bottom:611.293333pt;}
.y6c{bottom:613.693333pt;}
.y108{bottom:614.173333pt;}
.y1dc{bottom:616.573333pt;}
.y3b{bottom:620.413333pt;}
.y187{bottom:623.293333pt;}
.y88{bottom:628.093333pt;}
.y8{bottom:628.573333pt;}
.ya5{bottom:629.053333pt;}
.y14f{bottom:630.493333pt;}
.yf9{bottom:634.333333pt;}
.y16c{bottom:637.213333pt;}
.y27{bottom:638.693333pt;}
.y6b{bottom:641.573333pt;}
.y107{bottom:642.053333pt;}
.y1b7{bottom:642.533333pt;}
.y3a{bottom:647.813333pt;}
.ybf{bottom:649.733333pt;}
.y186{bottom:651.173333pt;}
.y119{bottom:655.013333pt;}
.yf8{bottom:655.493333pt;}
.y87{bottom:655.973333pt;}
.y1c2{bottom:656.453333pt;}
.ya4{bottom:656.933333pt;}
.y1db{bottom:657.413333pt;}
.y1a1{bottom:662.213333pt;}
.y16b{bottom:665.093333pt;}
.y7{bottom:665.573333pt;}
.y26{bottom:666.053333pt;}
.y6a{bottom:668.933333pt;}
.y106{bottom:669.413333pt;}
.y1b6{bottom:669.893333pt;}
.y39{bottom:675.653333pt;}
.y185{bottom:678.533333pt;}
.y118{bottom:682.373333pt;}
.y86{bottom:683.333333pt;}
.ya3{bottom:684.293333pt;}
.y1a7{bottom:689.573333pt;}
.y16a{bottom:692.453333pt;}
.y25{bottom:692.933333pt;}
.y69{bottom:696.773333pt;}
.y105{bottom:697.253333pt;}
.y1b5{bottom:697.733333pt;}
.y1da{bottom:698.693333pt;}
.y6{bottom:703.013333pt;}
.y184{bottom:706.373333pt;}
.ybe{bottom:710.213333pt;}
.y85{bottom:711.173333pt;}
.ya2{bottom:712.133333pt;}
.y154{bottom:715.520000pt;}
.y1a6{bottom:717.440000pt;}
.y24{bottom:720.320000pt;}
.yd7{bottom:723.680000pt;}
.y68{bottom:724.160000pt;}
.y1b4{bottom:725.120000pt;}
.y50{bottom:730.880000pt;}
.y183{bottom:733.760000pt;}
.ybd{bottom:737.600000pt;}
.y104{bottom:738.080000pt;}
.y84{bottom:738.560000pt;}
.ya1{bottom:739.520000pt;}
.y5{bottom:740.000000pt;}
.y38{bottom:744.320000pt;}
.y23{bottom:747.680000pt;}
.y67{bottom:752.000000pt;}
.y1c1{bottom:752.960000pt;}
.y4f{bottom:758.240000pt;}
.y182{bottom:761.600000pt;}
.ybc{bottom:765.440000pt;}
.y103{bottom:765.920000pt;}
.y83{bottom:766.400000pt;}
.ya0{bottom:767.360000pt;}
.y37{bottom:771.680000pt;}
.y22{bottom:775.040000pt;}
.y169{bottom:775.520000pt;}
.y4{bottom:776.960000pt;}
.y66{bottom:779.360000pt;}
.y1d9{bottom:780.320000pt;}
.y4e{bottom:786.080000pt;}
.ybb{bottom:792.826667pt;}
.y102{bottom:793.306667pt;}
.ydc{bottom:793.786667pt;}
.y9f{bottom:794.746667pt;}
.y36{bottom:799.546667pt;}
.y181{bottom:800.506667pt;}
.y21{bottom:801.946667pt;}
.y168{bottom:802.906667pt;}
.y117{bottom:806.746667pt;}
.y82{bottom:807.226667pt;}
.y4d{bottom:813.466667pt;}
.y3{bottom:814.426667pt;}
.y9e{bottom:815.386667pt;}
.y65{bottom:820.666667pt;}
.y101{bottom:821.146667pt;}
.y1c0{bottom:821.626667pt;}
.y180{bottom:823.546667pt;}
.y35{bottom:826.906667pt;}
.y20{bottom:829.306667pt;}
.y81{bottom:834.586667pt;}
.ycd{bottom:841.306667pt;}
.y167{bottom:843.226667pt;}
.y2{bottom:846.106667pt;}
.y64{bottom:848.026667pt;}
.y100{bottom:848.506667pt;}
.y1bf{bottom:848.986667pt;}
.y34{bottom:854.746667pt;}
.y1f{bottom:856.666667pt;}
.y4c{bottom:860.026667pt;}
.y12c{bottom:861.946667pt;}
.y80{bottom:862.426667pt;}
.y166{bottom:867.746667pt;}
.ycc{bottom:868.706667pt;}
.y17f{bottom:869.186667pt;}
.y63{bottom:875.906667pt;}
.yff{bottom:876.386667pt;}
.y33{bottom:882.146667pt;}
.y1e{bottom:884.066667pt;}
.y7f{bottom:889.826667pt;}
.y17e{bottom:892.226667pt;}
.y165{bottom:893.186667pt;}
.ycb{bottom:895.106667pt;}
.y62{bottom:903.266667pt;}
.yfe{bottom:903.746667pt;}
.y32{bottom:909.506667pt;}
.y1d{bottom:911.426667pt;}
.y4b{bottom:914.786667pt;}
.y7e{bottom:917.666667pt;}
.y164{bottom:918.626667pt;}
.y61{bottom:931.106667pt;}
.yfd{bottom:931.586667pt;}
.y31{bottom:937.346667pt;}
.y1c{bottom:938.333333pt;}
.y7d{bottom:945.053333pt;}
.y60{bottom:958.493333pt;}
.y30{bottom:964.733333pt;}
.y1b{bottom:965.693333pt;}
.yfc{bottom:970.013333pt;}
.y5f{bottom:986.333333pt;}
.y2f{bottom:992.573333pt;}
.y1a{bottom:993.053333pt;}
.y19{bottom:1013.253333pt;}
.y5e{bottom:1013.733333pt;}
.y1{bottom:1014.213333pt;}
.yfb{bottom:1016.133333pt;}
.ha{height:26.206875pt;}
.hc{height:33.918750pt;}
.h8{height:41.456250pt;}
.h2{height:45.134063pt;}
.hf{height:48.195000pt;}
.hb{height:52.762500pt;}
.h10{height:53.358750pt;}
.h9{height:56.801250pt;}
.hd{height:58.252500pt;}
.h5{height:58.415625pt;}
.he{height:62.153437pt;}
.h7{height:62.184375pt;}
.h6{height:63.855000pt;}
.h11{height:65.124096pt;}
.h4{height:78.097500pt;}
.h3{height:88.110000pt;}
.h1{height:1122.666667pt;}
.h0{height:1122.720000pt;}
.w3{width:793.919976pt;}
.w2{width:793.919988pt;}
.w0{width:793.920000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1{left:113.343988pt;}
.x17{left:117.663988pt;}
.x6{left:119.583988pt;}
.xe{left:128.223988pt;}
.xc{left:130.623988pt;}
.x24{left:141.693322pt;}
.xf{left:142.653322pt;}
.x10{left:160.413322pt;}
.x11{left:170.013322pt;}
.x12{left:192.613310pt;}
.x13{left:197.893322pt;}
.x21{left:207.973322pt;}
.x5{left:216.613322pt;}
.xb{left:241.599988pt;}
.x1b{left:244.959976pt;}
.x4{left:246.879988pt;}
.x1c{left:250.239988pt;}
.x9{left:282.399988pt;}
.x16{left:305.466655pt;}
.x1d{left:339.066643pt;}
.x1e{left:344.386655pt;}
.x7{left:356.386655pt;}
.x8{left:366.946655pt;}
.xa{left:367.906655pt;}
.x3{left:396.733322pt;}
.x14{left:405.853310pt;}
.x15{left:411.133322pt;}
.x1f{left:447.133310pt;}
.x22{left:448.613310pt;}
.x20{left:452.453322pt;}
.x23{left:453.893322pt;}
.x2{left:628.226655pt;}
.x18{left:645.986643pt;}
.x19{left:651.266655pt;}
.x1a{left:665.693322pt;}
.xd{left:673.373322pt;}
}




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