
    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_4a081eca5292b116db454b93.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.910156;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_d48824a9ed940d9f8c56a7e2.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.010254;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_3bee954358431f512696cf6b.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.008301;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_10f4932915cf97b8c7e2d280.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.994141;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_2c6179d25d5669c3633bc26b.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_bff4bb2f0263295e97c35e80.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.722656;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_3b750e3839e976048fe931d0.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.005371;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_d34a64d341f6f0b44ce81734.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.666504;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_343401d22628ceabdeb6105f.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.666504;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;}
.m8{transform:matrix(0.249824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249824,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.249840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249840,0.000000,0.000000,0.250000,0,0);}
.m9{transform:matrix(0.249845,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249845,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249845,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.249850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249850,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.249853,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249853,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249853,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.249857,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249857,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249857,0.000000,0.000000,0.250000,0,0);}
.v2{vertical-align:-48.240039px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:36.000029px;}
.v3{vertical-align:37.440030px;}
.ls2{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.012598px;}
.ls1{letter-spacing:0.189300px;}
.ls5{letter-spacing:0.378602px;}
.ls4{letter-spacing:64.076571px;}
.ls3{letter-spacing:65.517172px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
.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;}
.sc1{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws3{word-spacing:-35.856029px;}
.ws4{word-spacing:-15.318614px;}
.ws1{word-spacing:-14.940012px;}
.ws2{word-spacing:0.000000px;}
.ws0{word-spacing:174.345270px;}
._0{margin-left:-1.168242px;}
._1{width:1.218604px;}
._14{width:2.583186px;}
._13{width:3.682906px;}
._c{width:5.641172px;}
._b{width:7.184357px;}
._a{width:8.347564px;}
._12{width:9.377113px;}
._17{width:10.698075px;}
._1c{width:12.323738px;}
._11{width:13.580016px;}
._9{width:16.447894px;}
._1b{width:17.599846px;}
._f{width:18.749228px;}
._10{width:20.079991px;}
._15{width:21.221163px;}
._1a{width:23.047050px;}
._19{width:24.091394px;}
._1d{width:25.217749px;}
._1e{width:26.574383px;}
._16{width:27.949402px;}
._18{width:29.805215px;}
._d{width:30.970299px;}
._4{width:32.976264px;}
._e{width:34.991226px;}
._20{width:36.343500px;}
._1f{width:37.424335px;}
._2{width:44.835601px;}
._5{width:57.672983px;}
._3e{width:74.305951px;}
._3f{width:75.318701px;}
._2a{width:81.363624px;}
._2f{width:85.656910px;}
._2d{width:103.345642px;}
._35{width:105.108869px;}
._3b{width:106.344166px;}
._3c{width:107.406921px;}
._24{width:113.149450px;}
._29{width:115.496453px;}
._36{width:117.858395px;}
._3d{width:123.920360px;}
._28{width:127.591470px;}
._32{width:140.897650px;}
._34{width:145.882296px;}
._7{width:147.674889px;}
._27{width:156.668354px;}
._2e{width:166.263290px;}
._21{width:169.606869px;}
._3{width:174.345270px;}
._2c{width:181.748126px;}
._37{width:193.683535px;}
._2b{width:197.159557px;}
._8{width:201.192958px;}
._33{width:202.551751px;}
._22{width:212.109656px;}
._39{width:215.997840px;}
._30{width:217.909947px;}
._26{width:224.283944px;}
._25{width:226.754503px;}
._31{width:232.513843px;}
._23{width:233.543240px;}
._3a{width:257.082372px;}
._38{width:260.603869px;}
._6{width:473.626858px;}
.fc2{color:rgb(0,0,255);}
.fc1{color:transparent;}
.fc0{color:rgb(0,0,0);}
.fs9{font-size:12.240010px;}
.fs8{font-size:18.000014px;}
.fs7{font-size:23.760019px;}
.fsa{font-size:30.240024px;}
.fsb{font-size:36.000029px;}
.fs3{font-size:41.760033px;}
.fs0{font-size:48.240039px;}
.fs4{font-size:54.000043px;}
.fs1{font-size:59.760048px;}
.fs6{font-size:66.240053px;}
.fs2{font-size:72.000058px;}
.fs5{font-size:95.760077px;}
.y0{bottom:0.000000px;}
.yfa{bottom:3.959530px;}
.yfc{bottom:3.959545px;}
.y13f{bottom:3.959919px;}
.ye7{bottom:3.959937px;}
.y10c{bottom:3.959961px;}
.y130{bottom:3.960812px;}
.y12d{bottom:3.960814px;}
.y5{bottom:71.760957px;}
.y7{bottom:81.120965px;}
.y4{bottom:92.820974px;}
.y6{bottom:94.080975px;}
.y107{bottom:127.201002px;}
.y13c{bottom:129.181603px;}
.y40{bottom:133.681607px;}
.ye0{bottom:134.941608px;}
.y106{bottom:141.601013px;}
.y13b{bottom:147.721618px;}
.y3f{bottom:152.221622px;}
.ydf{bottom:153.301623px;}
.y77{bottom:155.461624px;}
.yad{bottom:155.641625px;}
.y16e{bottom:158.881627px;}
.y13a{bottom:166.441633px;}
.y3e{bottom:170.941637px;}
.yde{bottom:172.021638px;}
.y76{bottom:174.181639px;}
.yac{bottom:174.361639px;}
.y16d{bottom:177.421642px;}
.y139{bottom:184.981648px;}
.y3d{bottom:189.481652px;}
.ydd{bottom:190.561652px;}
.y75{bottom:192.721654px;}
.yab{bottom:193.981655px;}
.y16c{bottom:195.961657px;}
.y138{bottom:203.701663px;}
.y3c{bottom:208.201667px;}
.ydc{bottom:209.281667px;}
.y74{bottom:211.441669px;}
.yaa{bottom:213.961671px;}
.y16b{bottom:215.401672px;}
.y137{bottom:222.241678px;}
.y3b{bottom:226.741681px;}
.ydb{bottom:227.821682px;}
.y73{bottom:229.981684px;}
.ya9{bottom:232.681686px;}
.y16a{bottom:234.121687px;}
.y136{bottom:240.961693px;}
.y3a{bottom:245.461696px;}
.yda{bottom:246.181697px;}
.y72{bottom:248.701699px;}
.ya8{bottom:251.221701px;}
.y169{bottom:252.661702px;}
.y135{bottom:259.681708px;}
.yd9{bottom:262.201710px;}
.y39{bottom:264.001711px;}
.y71{bottom:267.241714px;}
.ya7{bottom:269.941716px;}
.y168{bottom:272.101718px;}
.yd8{bottom:273.541719px;}
.y134{bottom:278.221723px;}
.y38{bottom:282.721726px;}
.y70{bottom:285.961729px;}
.ya6{bottom:289.561732px;}
.y167{bottom:290.641733px;}
.yd7{bottom:292.261734px;}
.y133{bottom:296.941738px;}
.y37{bottom:301.441741px;}
.y6f{bottom:304.501744px;}
.ya5{bottom:305.041744px;}
.y166{bottom:310.081748px;}
.yd6{bottom:310.981749px;}
.ya4{bottom:313.681751px;}
.y132{bottom:315.481752px;}
.y36{bottom:319.981756px;}
.y6e{bottom:322.861758px;}
.y165{bottom:328.621763px;}
.yd5{bottom:329.341763px;}
.y131{bottom:331.141765px;}
.ya3{bottom:332.401766px;}
.y12f{bottom:336.180960px;}
.y12c{bottom:338.340960px;}
.y6d{bottom:338.341771px;}
.y35{bottom:338.701771px;}
.y12e{bottom:340.141772px;}
.y12b{bottom:342.121774px;}
.yd4{bottom:344.101775px;}
.y6c{bottom:346.801777px;}
.y164{bottom:347.161778px;}
.ya2{bottom:351.121781px;}
.yd3{bottom:351.301781px;}
.y34{bottom:357.241786px;}
.y12a{bottom:357.781786px;}
.y105{bottom:361.921790px;}
.y6b{bottom:365.341792px;}
.y163{bottom:366.601793px;}
.ya1{bottom:369.661796px;}
.yd2{bottom:369.841796px;}
.y129{bottom:372.001798px;}
.y104{bottom:374.881800px;}
.y33{bottom:375.961801px;}
.y6a{bottom:384.061807px;}
.y162{bottom:385.141808px;}
.ya0{bottom:388.381811px;}
.yd1{bottom:388.561811px;}
.y128{bottom:390.541812px;}
.y103{bottom:393.421815px;}
.y32{bottom:394.501816px;}
.y69{bottom:402.601822px;}
.y161{bottom:404.581824px;}
.y9f{bottom:406.921826px;}
.y127{bottom:409.981828px;}
.y102{bottom:412.141830px;}
.y31{bottom:413.221831px;}
.y68{bottom:421.321837px;}
.yd0{bottom:421.681837px;}
.y160{bottom:423.121838px;}
.y9e{bottom:425.641841px;}
.y126{bottom:428.521843px;}
.ycf{bottom:430.321844px;}
.y101{bottom:430.861845px;}
.y30{bottom:431.761845px;}
.y67{bottom:439.861852px;}
.y15f{bottom:441.661853px;}
.y9d{bottom:444.181855px;}
.y125{bottom:447.781858px;}
.yce{bottom:449.041859px;}
.y100{bottom:449.401860px;}
.y2f{bottom:450.481860px;}
.y66{bottom:458.581867px;}
.y15e{bottom:461.101869px;}
.y9c{bottom:462.901870px;}
.y124{bottom:466.861873px;}
.ycd{bottom:467.581874px;}
.yff{bottom:468.121874px;}
.y2e{bottom:469.201875px;}
.y190{bottom:473.521879px;}
.y65{bottom:477.301882px;}
.y15d{bottom:479.821884px;}
.y9b{bottom:481.441885px;}
.y123{bottom:482.701886px;}
.ycc{bottom:486.301889px;}
.y2d{bottom:487.741890px;}
.yfe{bottom:489.721892px;}
.y18f{bottom:492.061894px;}
.y122{bottom:492.601894px;}
.y64{bottom:495.661897px;}
.y15c{bottom:498.361899px;}
.y9a{bottom:500.161900px;}
.ycb{bottom:506.281905px;}
.y2c{bottom:506.461905px;}
.y121{bottom:508.801907px;}
.y18e{bottom:510.781909px;}
.y63{bottom:510.961909px;}
.yfd{bottom:513.841911px;}
.y120{bottom:516.001913px;}
.y15b{bottom:517.801914px;}
.y99{bottom:518.881915px;}
.y62{bottom:519.421916px;}
.y2b{bottom:524.821920px;}
.yca{bottom:525.001920px;}
.y18d{bottom:529.321923px;}
.yf9{bottom:534.002400px;}
.y15a{bottom:536.341929px;}
.y98{bottom:537.421930px;}
.y61{bottom:537.961930px;}
.y2a{bottom:543.181935px;}
.yc9{bottom:543.721935px;}
.yf8{bottom:546.961938px;}
.y18c{bottom:547.861938px;}
.yfb{bottom:552.002400px;}
.y159{bottom:555.781945px;}
.y97{bottom:556.141945px;}
.y60{bottom:556.681945px;}
.y29{bottom:561.721949px;}
.yc8{bottom:562.261950px;}
.y18b{bottom:567.301954px;}
.y158{bottom:574.141959px;}
.y96{bottom:574.681960px;}
.y5f{bottom:575.221960px;}
.yf7{bottom:577.561962px;}
.y28{bottom:577.741962px;}
.yc7{bottom:580.981965px;}
.y18a{bottom:586.021969px;}
.y27{bottom:587.821970px;}
.y95{bottom:593.401975px;}
.y157{bottom:593.581975px;}
.y5e{bottom:593.941975px;}
.yf6{bottom:595.921977px;}
.yc6{bottom:600.961981px;}
.y189{bottom:604.381984px;}
.y26{bottom:606.541985px;}
.y94{bottom:611.941990px;}
.y156{bottom:612.121990px;}
.y5d{bottom:612.481990px;}
.yc5{bottom:619.681996px;}
.yf5{bottom:622.021998px;}
.y188{bottom:623.821999px;}
.y25{bottom:625.082000px;}
.y93{bottom:630.662005px;}
.y5c{bottom:631.202005px;}
.y155{bottom:631.562005px;}
.yc4{bottom:638.402011px;}
.y187{bottom:642.362014px;}
.y24{bottom:643.802015px;}
.yf4{bottom:645.602016px;}
.y92{bottom:649.202019px;}
.y5b{bottom:649.922020px;}
.y154{bottom:651.002021px;}
.yc3{bottom:657.122026px;}
.y186{bottom:661.802029px;}
.y23{bottom:662.342030px;}
.y91{bottom:667.922034px;}
.y5a{bottom:668.462035px;}
.y153{bottom:669.362035px;}
.yc2{bottom:676.742041px;}
.y185{bottom:680.522044px;}
.y22{bottom:681.062045px;}
.y90{bottom:686.642049px;}
.y59{bottom:687.182050px;}
.y152{bottom:688.802051px;}
.yc1{bottom:696.722057px;}
.y184{bottom:699.062059px;}
.y21{bottom:699.782060px;}
.y8f{bottom:705.182064px;}
.y58{bottom:705.722065px;}
.y151{bottom:707.342066px;}
.yc0{bottom:715.442072px;}
.y20{bottom:718.322075px;}
.y183{bottom:718.502075px;}
.y8e{bottom:723.902079px;}
.y57{bottom:724.442080px;}
.y150{bottom:726.782081px;}
.ybf{bottom:733.982087px;}
.y1f{bottom:737.042090px;}
.y8d{bottom:742.442094px;}
.y56{bottom:742.982094px;}
.y14f{bottom:745.322096px;}
.ybe{bottom:752.702102px;}
.y11f{bottom:753.962103px;}
.y1e{bottom:755.582104px;}
.y182{bottom:756.482105px;}
.y8c{bottom:761.162109px;}
.y55{bottom:761.702109px;}
.y14e{bottom:764.762112px;}
.y11e{bottom:772.502118px;}
.ybd{bottom:772.682118px;}
.y1d{bottom:774.302119px;}
.y181{bottom:775.022120px;}
.y8b{bottom:779.702124px;}
.y54{bottom:780.242124px;}
.y14d{bottom:783.302127px;}
.y11d{bottom:791.222133px;}
.ybc{bottom:791.402133px;}
.y1c{bottom:792.842134px;}
.y180{bottom:793.562135px;}
.y8a{bottom:798.422139px;}
.y53{bottom:798.962139px;}
.y14c{bottom:802.742142px;}
.y11c{bottom:809.762148px;}
.ybb{bottom:810.122148px;}
.y1b{bottom:811.562149px;}
.y17f{bottom:813.002150px;}
.y89{bottom:816.962154px;}
.y52{bottom:817.682154px;}
.y14b{bottom:821.282157px;}
.y11b{bottom:828.482163px;}
.yba{bottom:828.662163px;}
.y1a{bottom:830.102164px;}
.y17e{bottom:831.722165px;}
.y88{bottom:835.682169px;}
.y51{bottom:836.222169px;}
.y14a{bottom:840.722173px;}
.y11a{bottom:847.202178px;}
.yb9{bottom:847.382178px;}
.y19{bottom:848.822179px;}
.y17d{bottom:850.082180px;}
.y87{bottom:854.402184px;}
.y50{bottom:854.942184px;}
.y149{bottom:859.262187px;}
.y119{bottom:865.742193px;}
.yb8{bottom:866.102193px;}
.y18{bottom:867.542194px;}
.y17c{bottom:869.522196px;}
.y86{bottom:872.942198px;}
.y4f{bottom:873.482199px;}
.yf3{bottom:873.842199px;}
.y148{bottom:878.702203px;}
.y118{bottom:884.462208px;}
.y17{bottom:886.082209px;}
.y17b{bottom:888.242211px;}
.y85{bottom:891.662213px;}
.y4e{bottom:892.202214px;}
.yf2{bottom:892.562214px;}
.y147{bottom:897.242218px;}
.y117{bottom:903.002222px;}
.y16{bottom:904.802224px;}
.y17a{bottom:906.782225px;}
.y84{bottom:910.202228px;}
.y4d{bottom:910.742229px;}
.yf1{bottom:911.102229px;}
.y146{bottom:916.502233px;}
.y116{bottom:921.722237px;}
.y15{bottom:923.162239px;}
.yb7{bottom:923.522239px;}
.y179{bottom:926.222241px;}
.y83{bottom:928.922243px;}
.y4c{bottom:929.462244px;}
.yf0{bottom:929.822244px;}
.y145{bottom:935.942249px;}
.y115{bottom:940.262252px;}
.y14{bottom:941.162253px;}
.yb6{bottom:943.142255px;}
.y178{bottom:944.762256px;}
.y82{bottom:947.462258px;}
.y4b{bottom:948.002258px;}
.yef{bottom:948.362259px;}
.y144{bottom:954.482264px;}
.y114{bottom:958.982267px;}
.y13{bottom:959.522268px;}
.yb5{bottom:963.122270px;}
.y177{bottom:963.302271px;}
.y81{bottom:966.182273px;}
.y4a{bottom:966.722273px;}
.yee{bottom:967.082274px;}
.y143{bottom:973.922279px;}
.y113{bottom:977.342282px;}
.y11{bottom:978.062282px;}
.y12{bottom:978.242283px;}
.yb4{bottom:981.842285px;}
.y176{bottom:982.742286px;}
.yed{bottom:983.462287px;}
.y80{bottom:984.722288px;}
.y49{bottom:985.442288px;}
.y142{bottom:992.462294px;}
.y10{bottom:996.962298px;}
.yec{bottom:997.862298px;}
.y112{bottom:999.122299px;}
.yb3{bottom:1000.382300px;}
.ye9{bottom:1000.742301px;}
.y175{bottom:1001.462301px;}
.y7f{bottom:1003.442303px;}
.yeb{bottom:1003.802303px;}
.y48{bottom:1003.982303px;}
.y141{bottom:1009.742308px;}
.y110{bottom:1011.362309px;}
.yf{bottom:1015.142312px;}
.y111{bottom:1017.662314px;}
.ye8{bottom:1018.922315px;}
.y13e{bottom:1019.822400px;}
.y174{bottom:1020.002316px;}
.yb2{bottom:1020.542316px;}
.y10f{bottom:1020.722317px;}
.y140{bottom:1021.622317px;}
.yea{bottom:1021.982318px;}
.y7e{bottom:1022.162318px;}
.y47{bottom:1022.702318px;}
.y13d{bottom:1023.602319px;}
.yb1{bottom:1039.262331px;}
.y173{bottom:1039.442332px;}
.y7d{bottom:1040.702333px;}
.y46{bottom:1041.242333px;}
.ye6{bottom:1041.962400px;}
.y10e{bottom:1042.322334px;}
.ye5{bottom:1045.922337px;}
.yb0{bottom:1057.802346px;}
.y172{bottom:1057.982346px;}
.y7c{bottom:1059.422348px;}
.y45{bottom:1059.962348px;}
.ye{bottom:1061.042349px;}
.ye4{bottom:1064.642352px;}
.y10d{bottom:1066.622353px;}
.y10b{bottom:1071.842400px;}
.ye3{bottom:1072.922358px;}
.y10a{bottom:1075.802361px;}
.yaf{bottom:1076.522361px;}
.y7b{bottom:1077.962362px;}
.y44{bottom:1078.502363px;}
.yd{bottom:1080.482364px;}
.ye2{bottom:1091.282373px;}
.yae{bottom:1095.062376px;}
.y171{bottom:1095.962377px;}
.y7a{bottom:1096.682377px;}
.y43{bottom:1097.222378px;}
.y109{bottom:1106.222385px;}
.ye1{bottom:1106.762385px;}
.yc{bottom:1109.282387px;}
.y170{bottom:1114.682392px;}
.y79{bottom:1115.222392px;}
.y42{bottom:1115.762393px;}
.y108{bottom:1122.422398px;}
.y16f{bottom:1133.042406px;}
.y78{bottom:1133.942407px;}
.y41{bottom:1134.122407px;}
.yb{bottom:1135.562408px;}
.y3{bottom:1163.642431px;}
.ya{bottom:1168.142435px;}
.y2{bottom:1177.502442px;}
.y9{bottom:1180.922445px;}
.y1{bottom:1191.362453px;}
.y8{bottom:1193.882455px;}
.hf{height:8.923015px;}
.he{height:13.104503px;}
.hd{height:13.122081px;}
.h1a{height:15.840000px;}
.hb{height:17.297944px;}
.h17{height:17.321147px;}
.h11{height:17.820000px;}
.h1b{height:18.000000px;}
.h12{height:22.015564px;}
.h10{height:22.045096px;}
.h14{height:26.209005px;}
.h4{height:30.402446px;}
.h18{height:30.443227px;}
.h5{height:30.484009px;}
.h8{height:33.399870px;}
.h1{height:33.494792px;}
.h6{height:39.366242px;}
.h2{height:43.506949px;}
.h9{height:43.565308px;}
.hc{height:43.623668px;}
.h19{height:47.796366px;}
.ha{height:47.868788px;}
.h3{height:49.992227px;}
.h1c{height:52.488323px;}
.h7{height:69.809470px;}
.h13{height:79.565337px;}
.h16{height:80.226978px;}
.h15{height:80.946979px;}
.h0{height:1263.000000px;}
.w5{width:4.500000px;}
.w2{width:5.220000px;}
.w1{width:7.200000px;}
.w4{width:8.100000px;}
.w6{width:9.000000px;}
.w7{width:10.980000px;}
.w3{width:39.600000px;}
.w0{width:892.500000px;}
.x0{left:0.000000px;}
.x1{left:81.000065px;}
.x2c{left:89.280071px;}
.x3{left:91.800073px;}
.xc{left:96.120077px;}
.x2d{left:104.040000px;}
.xd{left:108.001487px;}
.x15{left:110.340088px;}
.x16{left:117.360101px;}
.xf{left:118.620095px;}
.x29{left:131.220105px;}
.x2a{left:133.920113px;}
.x23{left:135.180108px;}
.xb{left:155.340031px;}
.x1b{left:157.680126px;}
.x21{left:163.440131px;}
.x8{left:185.580148px;}
.x9{left:201.600218px;}
.xe{left:206.100106px;}
.x19{left:221.940178px;}
.x17{left:228.960176px;}
.xa{left:273.600219px;}
.x1c{left:398.340319px;}
.x31{left:427.138520px;}
.x2e{left:432.000346px;}
.x30{left:438.660351px;}
.x7{left:462.420370px;}
.x1d{left:466.740000px;}
.x1e{left:503.640403px;}
.x2f{left:510.300000px;}
.x27{left:516.060182px;}
.x6{left:579.595382px;}
.x4{left:583.380467px;}
.x24{left:588.240000px;}
.x10{left:589.680000px;}
.x5{left:596.520484px;}
.x11{left:605.880485px;}
.x25{left:615.060492px;}
.x2b{left:651.240521px;}
.x22{left:659.160527px;}
.x12{left:660.780000px;}
.x13{left:671.940538px;}
.x20{left:683.100546px;}
.x1a{left:694.260555px;}
.x18{left:696.780082px;}
.x28{left:704.699937px;}
.x26{left:729.720584px;}
.x1f{left:745.020000px;}
.x14{left:760.860000px;}
.x2{left:779.580624px;}
@media print{
.v2{vertical-align:-42.880034pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:32.000026pt;}
.v3{vertical-align:33.280027pt;}
.ls2{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.011198pt;}
.ls1{letter-spacing:0.168267pt;}
.ls5{letter-spacing:0.336535pt;}
.ls4{letter-spacing:56.956952pt;}
.ls3{letter-spacing:58.237487pt;}
.ws3{word-spacing:-31.872025pt;}
.ws4{word-spacing:-13.616546pt;}
.ws1{word-spacing:-13.280011pt;}
.ws2{word-spacing:0.000000pt;}
.ws0{word-spacing:154.973573pt;}
._0{margin-left:-1.038437pt;}
._1{width:1.083203pt;}
._14{width:2.296165pt;}
._13{width:3.273694pt;}
._c{width:5.014375pt;}
._b{width:6.386095pt;}
._a{width:7.420057pt;}
._12{width:8.335212pt;}
._17{width:9.509400pt;}
._1c{width:10.954434pt;}
._11{width:12.071125pt;}
._9{width:14.620350pt;}
._1b{width:15.644307pt;}
._f{width:16.665980pt;}
._10{width:17.848881pt;}
._15{width:18.863256pt;}
._1a{width:20.486267pt;}
._19{width:21.414573pt;}
._1d{width:22.415777pt;}
._1e{width:23.621674pt;}
._16{width:24.843913pt;}
._18{width:26.493524pt;}
._d{width:27.529154pt;}
._4{width:29.312234pt;}
._e{width:31.103312pt;}
._20{width:32.305334pt;}
._1f{width:33.266075pt;}
._2{width:39.853867pt;}
._5{width:51.264873pt;}
._3e{width:66.049734pt;}
._3f{width:66.949956pt;}
._2a{width:72.323222pt;}
._2f{width:76.139476pt;}
._2d{width:91.862793pt;}
._35{width:93.430106pt;}
._3b{width:94.528148pt;}
._3c{width:95.472819pt;}
._24{width:100.577289pt;}
._29{width:102.663514pt;}
._36{width:104.763018pt;}
._3d{width:110.151431pt;}
._28{width:113.414640pt;}
._32{width:125.242355pt;}
._34{width:129.673152pt;}
._7{width:131.266568pt;}
._27{width:139.260759pt;}
._2e{width:147.789591pt;}
._21{width:150.761661pt;}
._3{width:154.973573pt;}
._2c{width:161.553889pt;}
._37{width:172.163142pt;}
._2b{width:175.252940pt;}
._8{width:178.838185pt;}
._33{width:180.046001pt;}
._22{width:188.541916pt;}
._39{width:191.998080pt;}
._30{width:193.697731pt;}
._26{width:199.363506pt;}
._25{width:201.559558pt;}
._31{width:206.678972pt;}
._23{width:207.593991pt;}
._3a{width:228.517664pt;}
._38{width:231.647883pt;}
._6{width:421.001652pt;}
.fs9{font-size:10.880009pt;}
.fs8{font-size:16.000013pt;}
.fs7{font-size:21.120017pt;}
.fsa{font-size:26.880022pt;}
.fsb{font-size:32.000026pt;}
.fs3{font-size:37.120030pt;}
.fs0{font-size:42.880034pt;}
.fs4{font-size:48.000038pt;}
.fs1{font-size:53.120042pt;}
.fs6{font-size:58.880047pt;}
.fs2{font-size:64.000051pt;}
.fs5{font-size:85.120068pt;}
.y0{bottom:0.000000pt;}
.yfa{bottom:3.519583pt;}
.yfc{bottom:3.519595pt;}
.y13f{bottom:3.519928pt;}
.ye7{bottom:3.519944pt;}
.y10c{bottom:3.519965pt;}
.y130{bottom:3.520722pt;}
.y12d{bottom:3.520723pt;}
.y5{bottom:63.787518pt;}
.y7{bottom:72.107524pt;}
.y4{bottom:82.507533pt;}
.y6{bottom:83.627534pt;}
.y107{bottom:113.067557pt;}
.y13c{bottom:114.828092pt;}
.y40{bottom:118.828095pt;}
.ye0{bottom:119.948096pt;}
.y106{bottom:125.867567pt;}
.y13b{bottom:131.308105pt;}
.y3f{bottom:135.308108pt;}
.ydf{bottom:136.268109pt;}
.y77{bottom:138.188111pt;}
.yad{bottom:138.348111pt;}
.y16e{bottom:141.228113pt;}
.y13a{bottom:147.948118pt;}
.y3e{bottom:151.948122pt;}
.yde{bottom:152.908122pt;}
.y76{bottom:154.828124pt;}
.yac{bottom:154.988124pt;}
.y16d{bottom:157.708126pt;}
.y139{bottom:164.428132pt;}
.y3d{bottom:168.428135pt;}
.ydd{bottom:169.388136pt;}
.y75{bottom:171.308137pt;}
.yab{bottom:172.428138pt;}
.y16c{bottom:174.188139pt;}
.y138{bottom:181.068145pt;}
.y3c{bottom:185.068148pt;}
.ydc{bottom:186.028149pt;}
.y74{bottom:187.948150pt;}
.yaa{bottom:190.188152pt;}
.y16b{bottom:191.468153pt;}
.y137{bottom:197.548158pt;}
.y3b{bottom:201.548161pt;}
.ydb{bottom:202.508162pt;}
.y73{bottom:204.428164pt;}
.ya9{bottom:206.828165pt;}
.y16a{bottom:208.108166pt;}
.y136{bottom:214.188171pt;}
.y3a{bottom:218.188175pt;}
.yda{bottom:218.828175pt;}
.y72{bottom:221.068177pt;}
.ya8{bottom:223.308179pt;}
.y169{bottom:224.588180pt;}
.y135{bottom:230.828185pt;}
.yd9{bottom:233.068186pt;}
.y39{bottom:234.668188pt;}
.y71{bottom:237.548190pt;}
.ya7{bottom:239.948192pt;}
.y168{bottom:241.868193pt;}
.yd8{bottom:243.148195pt;}
.y134{bottom:247.308198pt;}
.y38{bottom:251.308201pt;}
.y70{bottom:254.188203pt;}
.ya6{bottom:257.388206pt;}
.y167{bottom:258.348207pt;}
.yd7{bottom:259.788208pt;}
.y133{bottom:263.948211pt;}
.y37{bottom:267.948214pt;}
.y6f{bottom:270.668217pt;}
.ya5{bottom:271.148217pt;}
.y166{bottom:275.628221pt;}
.yd6{bottom:276.428221pt;}
.ya4{bottom:278.828223pt;}
.y132{bottom:280.428224pt;}
.y36{bottom:284.428228pt;}
.y6e{bottom:286.988230pt;}
.y165{bottom:292.108234pt;}
.yd5{bottom:292.748234pt;}
.y131{bottom:294.348235pt;}
.ya3{bottom:295.468236pt;}
.y12f{bottom:298.827520pt;}
.y12c{bottom:300.747520pt;}
.y6d{bottom:300.748241pt;}
.y35{bottom:301.068241pt;}
.y12e{bottom:302.348242pt;}
.y12b{bottom:304.108243pt;}
.yd4{bottom:305.868245pt;}
.y6c{bottom:308.268247pt;}
.y164{bottom:308.588247pt;}
.ya2{bottom:312.108250pt;}
.yd3{bottom:312.268250pt;}
.y34{bottom:317.548254pt;}
.y12a{bottom:318.028254pt;}
.y105{bottom:321.708257pt;}
.y6b{bottom:324.748260pt;}
.y163{bottom:325.868261pt;}
.ya1{bottom:328.588263pt;}
.yd2{bottom:328.748263pt;}
.y129{bottom:330.668265pt;}
.y104{bottom:333.228267pt;}
.y33{bottom:334.188267pt;}
.y6a{bottom:341.388273pt;}
.y162{bottom:342.348274pt;}
.ya0{bottom:345.228276pt;}
.yd1{bottom:345.388276pt;}
.y128{bottom:347.148278pt;}
.y103{bottom:349.708280pt;}
.y32{bottom:350.668281pt;}
.y69{bottom:357.868286pt;}
.y161{bottom:359.628288pt;}
.y9f{bottom:361.708289pt;}
.y127{bottom:364.428292pt;}
.y102{bottom:366.348293pt;}
.y31{bottom:367.308294pt;}
.y68{bottom:374.508300pt;}
.yd0{bottom:374.828300pt;}
.y160{bottom:376.108301pt;}
.y9e{bottom:378.348303pt;}
.y126{bottom:380.908305pt;}
.ycf{bottom:382.508306pt;}
.y101{bottom:382.988306pt;}
.y30{bottom:383.788307pt;}
.y67{bottom:390.988313pt;}
.y15f{bottom:392.588314pt;}
.y9d{bottom:394.828316pt;}
.y125{bottom:398.028318pt;}
.yce{bottom:399.148319pt;}
.y100{bottom:399.468320pt;}
.y2f{bottom:400.428320pt;}
.y66{bottom:407.628326pt;}
.y15e{bottom:409.868328pt;}
.y9c{bottom:411.468329pt;}
.y124{bottom:414.988332pt;}
.ycd{bottom:415.628333pt;}
.yff{bottom:416.108333pt;}
.y2e{bottom:417.068334pt;}
.y190{bottom:420.908337pt;}
.y65{bottom:424.268339pt;}
.y15d{bottom:426.508341pt;}
.y9b{bottom:427.948342pt;}
.y123{bottom:429.068343pt;}
.ycc{bottom:432.268346pt;}
.y2d{bottom:433.548347pt;}
.yfe{bottom:435.308348pt;}
.y18f{bottom:437.388350pt;}
.y122{bottom:437.868350pt;}
.y64{bottom:440.588352pt;}
.y15c{bottom:442.988354pt;}
.y9a{bottom:444.588356pt;}
.ycb{bottom:450.028360pt;}
.y2c{bottom:450.188360pt;}
.y121{bottom:452.268362pt;}
.y18e{bottom:454.028363pt;}
.y63{bottom:454.188363pt;}
.yfd{bottom:456.748365pt;}
.y120{bottom:458.668367pt;}
.y15b{bottom:460.268368pt;}
.y99{bottom:461.228369pt;}
.y62{bottom:461.708369pt;}
.y2b{bottom:466.508373pt;}
.yca{bottom:466.668373pt;}
.y18d{bottom:470.508376pt;}
.yf9{bottom:474.668800pt;}
.y15a{bottom:476.748381pt;}
.y98{bottom:477.708382pt;}
.y61{bottom:478.188383pt;}
.y2a{bottom:482.828386pt;}
.yc9{bottom:483.308387pt;}
.yf8{bottom:486.188389pt;}
.y18c{bottom:486.988390pt;}
.yfb{bottom:490.668800pt;}
.y159{bottom:494.028395pt;}
.y97{bottom:494.348395pt;}
.y60{bottom:494.828396pt;}
.y29{bottom:499.308399pt;}
.yc8{bottom:499.788400pt;}
.y18b{bottom:504.268403pt;}
.y158{bottom:510.348408pt;}
.y96{bottom:510.828409pt;}
.y5f{bottom:511.308409pt;}
.yf7{bottom:513.388411pt;}
.y28{bottom:513.548411pt;}
.yc7{bottom:516.428413pt;}
.y18a{bottom:520.908417pt;}
.y27{bottom:522.508418pt;}
.y95{bottom:527.468422pt;}
.y157{bottom:527.628422pt;}
.y5e{bottom:527.948422pt;}
.yf6{bottom:529.708424pt;}
.yc6{bottom:534.188427pt;}
.y189{bottom:537.228430pt;}
.y26{bottom:539.148431pt;}
.y94{bottom:543.948435pt;}
.y156{bottom:544.108435pt;}
.y5d{bottom:544.428436pt;}
.yc5{bottom:550.828441pt;}
.yf5{bottom:552.908442pt;}
.y188{bottom:554.508444pt;}
.y25{bottom:555.628445pt;}
.y93{bottom:560.588448pt;}
.y5c{bottom:561.068449pt;}
.y155{bottom:561.388449pt;}
.yc4{bottom:567.468454pt;}
.y187{bottom:570.988457pt;}
.y24{bottom:572.268458pt;}
.yf4{bottom:573.868459pt;}
.y92{bottom:577.068462pt;}
.y5b{bottom:577.708462pt;}
.y154{bottom:578.668463pt;}
.yc3{bottom:584.108467pt;}
.y186{bottom:588.268471pt;}
.y23{bottom:588.748471pt;}
.y91{bottom:593.708475pt;}
.y5a{bottom:594.188475pt;}
.y153{bottom:594.988476pt;}
.yc2{bottom:601.548481pt;}
.y185{bottom:604.908484pt;}
.y22{bottom:605.388484pt;}
.y90{bottom:610.348488pt;}
.y59{bottom:610.828489pt;}
.y152{bottom:612.268490pt;}
.yc1{bottom:619.308495pt;}
.y184{bottom:621.388497pt;}
.y21{bottom:622.028498pt;}
.y8f{bottom:626.828501pt;}
.y58{bottom:627.308502pt;}
.y151{bottom:628.748503pt;}
.yc0{bottom:635.948509pt;}
.y20{bottom:638.508511pt;}
.y183{bottom:638.668511pt;}
.y8e{bottom:643.468515pt;}
.y57{bottom:643.948515pt;}
.y150{bottom:646.028517pt;}
.ybf{bottom:652.428522pt;}
.y1f{bottom:655.148524pt;}
.y8d{bottom:659.948528pt;}
.y56{bottom:660.428528pt;}
.y14f{bottom:662.508530pt;}
.ybe{bottom:669.068535pt;}
.y11f{bottom:670.188536pt;}
.y1e{bottom:671.628537pt;}
.y182{bottom:672.428538pt;}
.y8c{bottom:676.588541pt;}
.y55{bottom:677.068542pt;}
.y14e{bottom:679.788544pt;}
.y11e{bottom:686.668549pt;}
.ybd{bottom:686.828549pt;}
.y1d{bottom:688.268551pt;}
.y181{bottom:688.908551pt;}
.y8b{bottom:693.068554pt;}
.y54{bottom:693.548555pt;}
.y14d{bottom:696.268557pt;}
.y11d{bottom:703.308563pt;}
.ybc{bottom:703.468563pt;}
.y1c{bottom:704.748564pt;}
.y180{bottom:705.388564pt;}
.y8a{bottom:709.708568pt;}
.y53{bottom:710.188568pt;}
.y14c{bottom:713.548571pt;}
.y11c{bottom:719.788576pt;}
.ybb{bottom:720.108576pt;}
.y1b{bottom:721.388577pt;}
.y17f{bottom:722.668578pt;}
.y89{bottom:726.188581pt;}
.y52{bottom:726.828581pt;}
.y14b{bottom:730.028584pt;}
.y11b{bottom:736.428589pt;}
.yba{bottom:736.588589pt;}
.y1a{bottom:737.868590pt;}
.y17e{bottom:739.308591pt;}
.y88{bottom:742.828594pt;}
.y51{bottom:743.308595pt;}
.y14a{bottom:747.308598pt;}
.y11a{bottom:753.068602pt;}
.yb9{bottom:753.228603pt;}
.y19{bottom:754.508604pt;}
.y17d{bottom:755.628605pt;}
.y87{bottom:759.468608pt;}
.y50{bottom:759.948608pt;}
.y149{bottom:763.788611pt;}
.y119{bottom:769.548616pt;}
.yb8{bottom:769.868616pt;}
.y18{bottom:771.148617pt;}
.y17c{bottom:772.908618pt;}
.y86{bottom:775.948621pt;}
.y4f{bottom:776.428621pt;}
.yf3{bottom:776.748621pt;}
.y148{bottom:781.068625pt;}
.y118{bottom:786.188629pt;}
.y17{bottom:787.628630pt;}
.y17b{bottom:789.548632pt;}
.y85{bottom:792.588634pt;}
.y4e{bottom:793.068634pt;}
.yf2{bottom:793.388635pt;}
.y147{bottom:797.548638pt;}
.y117{bottom:802.668642pt;}
.y16{bottom:804.268643pt;}
.y17a{bottom:806.028645pt;}
.y84{bottom:809.068647pt;}
.y4d{bottom:809.548648pt;}
.yf1{bottom:809.868648pt;}
.y146{bottom:814.668652pt;}
.y116{bottom:819.308655pt;}
.y15{bottom:820.588656pt;}
.yb7{bottom:820.908657pt;}
.y179{bottom:823.308659pt;}
.y83{bottom:825.708661pt;}
.y4c{bottom:826.188661pt;}
.yf0{bottom:826.508661pt;}
.y145{bottom:831.948666pt;}
.y115{bottom:835.788669pt;}
.y14{bottom:836.588669pt;}
.yb6{bottom:838.348671pt;}
.y178{bottom:839.788672pt;}
.y82{bottom:842.188674pt;}
.y4b{bottom:842.668674pt;}
.yef{bottom:842.988674pt;}
.y144{bottom:848.428679pt;}
.y114{bottom:852.428682pt;}
.y13{bottom:852.908682pt;}
.yb5{bottom:856.108685pt;}
.y177{bottom:856.268685pt;}
.y81{bottom:858.828687pt;}
.y4a{bottom:859.308687pt;}
.yee{bottom:859.628688pt;}
.y143{bottom:865.708693pt;}
.y113{bottom:868.748695pt;}
.y11{bottom:869.388696pt;}
.y12{bottom:869.548696pt;}
.yb4{bottom:872.748698pt;}
.y176{bottom:873.548699pt;}
.yed{bottom:874.188699pt;}
.y80{bottom:875.308700pt;}
.y49{bottom:875.948701pt;}
.y142{bottom:882.188706pt;}
.y10{bottom:886.188709pt;}
.yec{bottom:886.988710pt;}
.y112{bottom:888.108710pt;}
.yb3{bottom:889.228711pt;}
.ye9{bottom:889.548712pt;}
.y175{bottom:890.188712pt;}
.y7f{bottom:891.948714pt;}
.yeb{bottom:892.268714pt;}
.y48{bottom:892.428714pt;}
.y141{bottom:897.548718pt;}
.y110{bottom:898.988719pt;}
.yf{bottom:902.348722pt;}
.y111{bottom:904.588724pt;}
.ye8{bottom:905.708725pt;}
.y13e{bottom:906.508800pt;}
.y174{bottom:906.668725pt;}
.yb2{bottom:907.148726pt;}
.y10f{bottom:907.308726pt;}
.y140{bottom:908.108726pt;}
.yea{bottom:908.428727pt;}
.y7e{bottom:908.588727pt;}
.y47{bottom:909.068727pt;}
.y13d{bottom:909.868728pt;}
.yb1{bottom:923.788739pt;}
.y173{bottom:923.948739pt;}
.y7d{bottom:925.068740pt;}
.y46{bottom:925.548740pt;}
.ye6{bottom:926.188800pt;}
.y10e{bottom:926.508741pt;}
.ye5{bottom:929.708744pt;}
.yb0{bottom:940.268752pt;}
.y172{bottom:940.428752pt;}
.y7c{bottom:941.708753pt;}
.y45{bottom:942.188754pt;}
.ye{bottom:943.148755pt;}
.ye4{bottom:946.348757pt;}
.y10d{bottom:948.108758pt;}
.y10b{bottom:952.748800pt;}
.ye3{bottom:953.708763pt;}
.y10a{bottom:956.268765pt;}
.yaf{bottom:956.908766pt;}
.y7b{bottom:958.188767pt;}
.y44{bottom:958.668767pt;}
.yd{bottom:960.428768pt;}
.ye2{bottom:970.028776pt;}
.yae{bottom:973.388779pt;}
.y171{bottom:974.188779pt;}
.y7a{bottom:974.828780pt;}
.y43{bottom:975.308780pt;}
.y109{bottom:983.308787pt;}
.ye1{bottom:983.788787pt;}
.yc{bottom:986.028789pt;}
.y170{bottom:990.828793pt;}
.y79{bottom:991.308793pt;}
.y42{bottom:991.788793pt;}
.y108{bottom:997.708798pt;}
.y16f{bottom:1007.148806pt;}
.y78{bottom:1007.948806pt;}
.y41{bottom:1008.108806pt;}
.yb{bottom:1009.388808pt;}
.y3{bottom:1034.348827pt;}
.ya{bottom:1038.348831pt;}
.y2{bottom:1046.668837pt;}
.y9{bottom:1049.708840pt;}
.y1{bottom:1058.988847pt;}
.y8{bottom:1061.228849pt;}
.hf{height:7.931569pt;}
.he{height:11.648447pt;}
.hd{height:11.664072pt;}
.h1a{height:14.080000pt;}
.hb{height:15.375950pt;}
.h17{height:15.396575pt;}
.h11{height:15.840000pt;}
.h1b{height:16.000000pt;}
.h12{height:19.569391pt;}
.h10{height:19.595641pt;}
.h14{height:23.296894pt;}
.h4{height:27.024397pt;}
.h18{height:27.060647pt;}
.h5{height:27.096897pt;}
.h8{height:29.688774pt;}
.h1{height:29.773149pt;}
.h6{height:34.992215pt;}
.h2{height:38.672843pt;}
.h9{height:38.724718pt;}
.hc{height:38.776594pt;}
.h19{height:42.485659pt;}
.ha{height:42.550034pt;}
.h3{height:44.437536pt;}
.h1c{height:46.656287pt;}
.h7{height:62.052862pt;}
.h13{height:70.724744pt;}
.h16{height:71.312870pt;}
.h15{height:71.952870pt;}
.h0{height:1122.666667pt;}
.w5{width:4.000000pt;}
.w2{width:4.640000pt;}
.w1{width:6.400000pt;}
.w4{width:7.200000pt;}
.w6{width:8.000000pt;}
.w7{width:9.760000pt;}
.w3{width:35.200000pt;}
.w0{width:793.333333pt;}
.x0{left:0.000000pt;}
.x1{left:72.000058pt;}
.x2c{left:79.360063pt;}
.x3{left:81.600065pt;}
.xc{left:85.440068pt;}
.x2d{left:92.480000pt;}
.xd{left:96.001322pt;}
.x15{left:98.080078pt;}
.x16{left:104.320090pt;}
.xf{left:105.440084pt;}
.x29{left:116.640093pt;}
.x2a{left:119.040101pt;}
.x23{left:120.160096pt;}
.xb{left:138.080027pt;}
.x1b{left:140.160112pt;}
.x21{left:145.280116pt;}
.x8{left:164.960132pt;}
.x9{left:179.200194pt;}
.xe{left:183.200095pt;}
.x19{left:197.280158pt;}
.x17{left:203.520156pt;}
.xa{left:243.200195pt;}
.x1c{left:354.080283pt;}
.x31{left:379.678685pt;}
.x2e{left:384.000307pt;}
.x30{left:389.920312pt;}
.x7{left:411.040329pt;}
.x1d{left:414.880000pt;}
.x1e{left:447.680358pt;}
.x2f{left:453.600000pt;}
.x27{left:458.720162pt;}
.x6{left:515.195896pt;}
.x4{left:518.560415pt;}
.x24{left:522.880000pt;}
.x10{left:524.160000pt;}
.x5{left:530.240430pt;}
.x11{left:538.560431pt;}
.x25{left:546.720437pt;}
.x2b{left:578.880463pt;}
.x22{left:585.920469pt;}
.x12{left:587.360000pt;}
.x13{left:597.280478pt;}
.x20{left:607.200486pt;}
.x1a{left:617.120494pt;}
.x18{left:619.360073pt;}
.x28{left:626.399944pt;}
.x26{left:648.640519pt;}
.x1f{left:662.240000pt;}
.x14{left:676.320000pt;}
.x2{left:692.960554pt;}
}




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