
    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_b56b18d68775f35183bbe9e3.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.921387;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_fbe820a88524fce853ddec45.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.921387;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_c82e2faee8b00bc6355d379a.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.914062;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_59e3d6954db54333a6e6c98b.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.914062;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_b10c141f873d8626f38f5390.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.040039;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_a6ea66f259a152488d54f797.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.040039;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_24aa446b18dc930796069466.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.970703;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_3ab4cf2ffa31cd5f79ca7608.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.970703;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_5ad189b37a58e274b8a07206.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.739746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_27fb3c20856f0669d0fa40a0.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.739746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_1a92a24dbcec8c6bc95284af.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.003906;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_dfa5af9d04977a3dc8869c5d.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.758789;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_cf5b54b838ee9f69dcdff9c4.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.739746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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;}
.lsa{letter-spacing:-3.600000px;}
.ls20{letter-spacing:-2.880000px;}
.ls9{letter-spacing:-1.440000px;}
.ls10{letter-spacing:-1.422000px;}
.ls1c{letter-spacing:-0.972000px;}
.ls1b{letter-spacing:-0.936000px;}
.ls8{letter-spacing:-0.720000px;}
.lse{letter-spacing:-0.486600px;}
.ls18{letter-spacing:-0.466800px;}
.lsb{letter-spacing:-0.360000px;}
.ls27{letter-spacing:-0.250800px;}
.ls19{letter-spacing:-0.020160px;}
.ls28{letter-spacing:-0.015840px;}
.lsc{letter-spacing:-0.015600px;}
.ls7{letter-spacing:0.000000px;}
.ls4{letter-spacing:0.015840px;}
.ls12{letter-spacing:0.020160px;}
.ls1f{letter-spacing:0.120000px;}
.ls6{letter-spacing:0.180000px;}
.ls5{letter-spacing:0.226560px;}
.ls29{letter-spacing:0.250800px;}
.ls1d{letter-spacing:0.423360px;}
.lsf{letter-spacing:0.466800px;}
.ls21{letter-spacing:0.486600px;}
.ls11{letter-spacing:0.507000px;}
.ls24{letter-spacing:0.665280px;}
.ls2{letter-spacing:0.720000px;}
.ls26{letter-spacing:1.080000px;}
.lsd{letter-spacing:1.692000px;}
.ls3{letter-spacing:2.520000px;}
.ls17{letter-spacing:3.346560px;}
.ls16{letter-spacing:4.786560px;}
.ls1a{letter-spacing:5.328000px;}
.ls14{letter-spacing:9.106560px;}
.ls25{letter-spacing:11.269440px;}
.ls15{letter-spacing:13.426560px;}
.ls0{letter-spacing:14.400000px;}
.ls1{letter-spacing:18.360000px;}
.ls13{letter-spacing:26.386560px;}
.ls1e{letter-spacing:26.398560px;}
.ls23{letter-spacing:35.749440px;}
.ls22{letter-spacing:40.786560px;}
.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;}
}
.ws14{word-spacing:-60.480000px;}
.wsb{word-spacing:-15.627000px;}
.ws13{word-spacing:-15.606600px;}
.ws9{word-spacing:-15.586800px;}
.ws11{word-spacing:-15.543360px;}
.ws10{word-spacing:-15.140160px;}
.ws4{word-spacing:-15.120000px;}
.wsf{word-spacing:-15.099840px;}
.wsc{word-spacing:-14.653200px;}
.wsd{word-spacing:-14.633400px;}
.wse{word-spacing:-13.698000px;}
.ws0{word-spacing:-13.680000px;}
.ws6{word-spacing:-13.572000px;}
.ws3{word-spacing:-12.600000px;}
.ws16{word-spacing:-12.545280px;}
.ws12{word-spacing:-12.240000px;}
.ws19{word-spacing:-12.130800px;}
.ws15{word-spacing:-11.895840px;}
.ws1{word-spacing:-11.880000px;}
.ws5{word-spacing:-11.864400px;}
.ws18{word-spacing:-11.864160px;}
.ws17{word-spacing:-11.629200px;}
.ws7{word-spacing:-11.160000px;}
.ws2{word-spacing:-8.280000px;}
.wsa{word-spacing:0.000000px;}
.ws8{word-spacing:29.953080px;}
._7{margin-left:-10.230148px;}
._2{margin-left:-6.953522px;}
._e{margin-left:-5.049479px;}
._5{margin-left:-3.870453px;}
._b{margin-left:-2.828517px;}
._0{margin-left:-1.451399px;}
._1{width:1.148999px;}
._4{width:2.202000px;}
._6{width:3.956523px;}
._8{width:5.823239px;}
._10{width:7.744199px;}
._c{width:8.755255px;}
._d{width:9.938287px;}
._f{width:11.047933px;}
._18{width:12.188615px;}
._24{width:13.554860px;}
._11{width:15.379232px;}
._17{width:16.554119px;}
._2e{width:17.556108px;}
._1d{width:18.612662px;}
._1c{width:19.690845px;}
._27{width:20.870595px;}
._1b{width:21.945686px;}
._14{width:23.200182px;}
._a{width:24.679331px;}
._9{width:26.098330px;}
._13{width:27.796446px;}
._12{width:28.920675px;}
._25{width:30.240000px;}
._22{width:31.752000px;}
._23{width:32.766832px;}
._26{width:33.796406px;}
._31{width:34.884407px;}
._15{width:35.913632px;}
._16{width:37.070977px;}
._21{width:38.492872px;}
._20{width:39.916800px;}
._29{width:41.762759px;}
._2f{width:43.151161px;}
._30{width:44.694599px;}
._32{width:45.858283px;}
._1a{width:47.091021px;}
._19{width:48.429674px;}
._33{width:49.691906px;}
._34{width:51.455083px;}
._35{width:52.630755px;}
._36{width:53.769959px;}
._2d{width:57.502679px;}
._2c{width:59.693518px;}
._38{width:63.895442px;}
._37{width:65.007360px;}
._2a{width:70.021918px;}
._2b{width:71.366158px;}
._39{width:81.837362px;}
._1e{width:86.459883px;}
._3a{width:89.575200px;}
._1f{width:99.761056px;}
._28{width:105.658197px;}
._3{width:538.818000px;}
.fc7{color:transparent;}
.fc8{color:rgb(0,112,192);}
.fc3{color:rgb(192,0,0);}
.fc5{color:rgb(5,99,193);}
.fc2{color:rgb(5,99,193);}
.fc4{color:rgb(51,51,255);}
.fc1{color:rgb(0,0,204);}
.fc6{color:rgb(33,33,33);}
.fc0{color:rgb(0,0,0);}
.fs1{font-size:47.520000px;}
.fs4{font-size:54.720000px;}
.fs0{font-size:60.480000px;}
.fs3{font-size:66.240000px;}
.fs6{font-size:72.000000px;}
.fs5{font-size:119.520000px;}
.fs2{font-size:144.000000px;}
.y77{bottom:-14.436000px;}
.y0{bottom:0.000000px;}
.y7{bottom:5.040000px;}
.y8{bottom:6.156000px;}
.y4{bottom:6.876000px;}
.yb{bottom:12.600000px;}
.y6{bottom:18.720000px;}
.y3{bottom:19.116000px;}
.ya{bottom:26.640000px;}
.y5{bottom:32.400000px;}
.y9{bottom:40.320000px;}
.y1ca{bottom:80.316000px;}
.y14c{bottom:86.436000px;}
.y135{bottom:88.236000px;}
.y74{bottom:92.196000px;}
.yd7{bottom:93.636000px;}
.y4a{bottom:94.356000px;}
.y11f{bottom:96.156000px;}
.y1c9{bottom:96.516000px;}
.y14b{bottom:104.436000px;}
.y134{bottom:106.596000px;}
.y49{bottom:108.396000px;}
.y73{bottom:110.556000px;}
.yb0{bottom:110.916000px;}
.yd6{bottom:111.636000px;}
.yfb{bottom:114.516000px;}
.y48{bottom:122.076000px;}
.y14a{bottom:122.436000px;}
.y1c8{bottom:124.236000px;}
.y133{bottom:124.596000px;}
.y72{bottom:128.556000px;}
.yaf{bottom:128.916000px;}
.yd5{bottom:129.636000px;}
.yfa{bottom:132.552000px;}
.y1c7{bottom:137.952000px;}
.y149{bottom:140.472000px;}
.y132{bottom:142.632000px;}
.y183{bottom:145.872000px;}
.y71{bottom:146.592000px;}
.yae{bottom:146.952000px;}
.yd4{bottom:148.032000px;}
.yf9{bottom:150.555000px;}
.y47{bottom:151.635000px;}
.y1c6{bottom:151.995000px;}
.y148{bottom:158.835000px;}
.y182{bottom:159.555000px;}
.y131{bottom:160.635000px;}
.y70{bottom:164.595000px;}
.y46{bottom:165.315000px;}
.y1c5{bottom:165.675000px;}
.yd3{bottom:166.035000px;}
.yf8{bottom:168.555000px;}
.y150{bottom:168.915000px;}
.y181{bottom:173.595000px;}
.y147{bottom:176.835000px;}
.y45{bottom:178.995000px;}
.y1c4{bottom:179.355000px;}
.y6f{bottom:182.955000px;}
.yad{bottom:183.315000px;}
.yf7{bottom:186.915000px;}
.y180{bottom:187.275000px;}
.yd2{bottom:187.635000px;}
.y44{bottom:193.035000px;}
.y1c3{bottom:193.395000px;}
.y146{bottom:194.835000px;}
.y130{bottom:196.995000px;}
.y6e{bottom:200.955000px;}
.yac{bottom:201.315000px;}
.yf6{bottom:204.915000px;}
.y43{bottom:206.715000px;}
.y1c2{bottom:207.075000px;}
.yd1{bottom:210.315000px;}
.y145{bottom:213.195000px;}
.y12f{bottom:214.995000px;}
.y6d{bottom:218.955000px;}
.yab{bottom:219.675000px;}
.y42{bottom:220.395000px;}
.y1c1{bottom:220.755000px;}
.yf5{bottom:222.915000px;}
.y14f{bottom:223.275000px;}
.yd0{bottom:228.675000px;}
.y144{bottom:231.195000px;}
.y12e{bottom:233.355000px;}
.y41{bottom:234.795000px;}
.y6c{bottom:237.315000px;}
.yaa{bottom:237.675000px;}
.yf4{bottom:241.275000px;}
.y17f{bottom:242.355000px;}
.ycf{bottom:246.675000px;}
.y1c0{bottom:248.475000px;}
.y143{bottom:249.195000px;}
.y12d{bottom:251.355000px;}
.y40{bottom:251.715000px;}
.y6b{bottom:255.315000px;}
.ya9{bottom:255.675000px;}
.y17e{bottom:256.395000px;}
.yf3{bottom:259.275000px;}
.y1bf{bottom:262.155000px;}
.yce{bottom:264.675000px;}
.y3f{bottom:267.225000px;}
.y142{bottom:267.585000px;}
.y12c{bottom:269.385000px;}
.y17d{bottom:270.105000px;}
.y6a{bottom:273.345000px;}
.ya8{bottom:273.705000px;}
.y1be{bottom:276.225000px;}
.yf2{bottom:277.305000px;}
.y14e{bottom:277.665000px;}
.ycd{bottom:282.705000px;}
.y3e{bottom:283.065000px;}
.y17c{bottom:283.785000px;}
.y141{bottom:285.585000px;}
.y1bd{bottom:289.905000px;}
.y69{bottom:291.705000px;}
.ya7{bottom:292.065000px;}
.yf1{bottom:295.665000px;}
.y17b{bottom:297.825000px;}
.y3d{bottom:298.545000px;}
.ycc{bottom:301.065000px;}
.y140{bottom:303.585000px;}
.y68{bottom:309.705000px;}
.ya6{bottom:310.065000px;}
.y17a{bottom:311.505000px;}
.yf0{bottom:313.665000px;}
.y3c{bottom:314.025000px;}
.y1bc{bottom:317.625000px;}
.ycb{bottom:319.065000px;}
.y13f{bottom:321.945000px;}
.y179{bottom:325.185000px;}
.y67{bottom:327.705000px;}
.ya5{bottom:328.065000px;}
.y3b{bottom:329.505000px;}
.y1bb{bottom:331.305000px;}
.yef{bottom:331.665000px;}
.y12b{bottom:332.025000px;}
.yca{bottom:337.065000px;}
.y178{bottom:339.225000px;}
.y13e{bottom:339.945000px;}
.y1ba{bottom:344.985000px;}
.y66{bottom:346.065000px;}
.ya4{bottom:346.425000px;}
.yee{bottom:350.025000px;}
.y177{bottom:352.905000px;}
.y13d{bottom:357.945000px;}
.yc9{bottom:358.665000px;}
.y1b9{bottom:359.025000px;}
.y65{bottom:364.065000px;}
.ya3{bottom:364.425000px;}
.y176{bottom:366.585000px;}
.yed{bottom:368.025000px;}
.y3a{bottom:369.105000px;}
.y1b8{bottom:372.705000px;}
.y13c{bottom:375.945000px;}
.y175{bottom:380.265000px;}
.yc8{bottom:381.705000px;}
.y64{bottom:382.065000px;}
.ya2{bottom:382.425000px;}
.y39{bottom:384.585000px;}
.yec{bottom:386.025000px;}
.y1b7{bottom:386.385000px;}
.y13b{bottom:394.305000px;}
.yc7{bottom:399.750000px;}
.y38{bottom:400.110000px;}
.y1b6{bottom:400.470000px;}
.ya1{bottom:400.830000px;}
.yeb{bottom:404.070000px;}
.y12a{bottom:404.430000px;}
.y174{bottom:408.030000px;}
.y13a{bottom:412.350000px;}
.y1b5{bottom:414.150000px;}
.y37{bottom:415.590000px;}
.yc6{bottom:417.750000px;}
.y63{bottom:418.470000px;}
.ya0{bottom:418.830000px;}
.y173{bottom:421.710000px;}
.yea{bottom:422.430000px;}
.y1b4{bottom:427.830000px;}
.y139{bottom:430.350000px;}
.y36{bottom:431.430000px;}
.y172{bottom:435.750000px;}
.yc5{bottom:436.110000px;}
.y62{bottom:436.470000px;}
.y9f{bottom:436.830000px;}
.ye9{bottom:440.430000px;}
.y1b3{bottom:441.870000px;}
.y35{bottom:446.910000px;}
.y138{bottom:448.710000px;}
.y171{bottom:449.430000px;}
.yc4{bottom:454.110000px;}
.y61{bottom:454.470000px;}
.y9e{bottom:455.190000px;}
.y1b2{bottom:455.550000px;}
.ye8{bottom:458.430000px;}
.y129{bottom:458.790000px;}
.y34{bottom:462.390000px;}
.y170{bottom:463.110000px;}
.y137{bottom:466.710000px;}
.y1b1{bottom:469.230000px;}
.yc3{bottom:472.110000px;}
.y60{bottom:472.830000px;}
.y9d{bottom:473.190000px;}
.y11e{bottom:476.790000px;}
.y16f{bottom:477.150000px;}
.y33{bottom:477.870000px;}
.ye7{bottom:480.030000px;}
.y1b0{bottom:483.270000px;}
.y136{bottom:484.710000px;}
.yc2{bottom:490.110000px;}
.y5f{bottom:490.830000px;}
.y9c{bottom:491.190000px;}
.y32{bottom:493.350000px;}
.y11d{bottom:494.790000px;}
.y1af{bottom:496.950000px;}
.ye6{bottom:503.070000px;}
.y16e{bottom:504.510000px;}
.yc1{bottom:508.470000px;}
.y31{bottom:508.830000px;}
.y9b{bottom:509.550000px;}
.y1ae{bottom:510.630000px;}
.y11c{bottom:512.790000px;}
.y128{bottom:513.150000px;}
.y16d{bottom:518.550000px;}
.ye5{bottom:521.070000px;}
.y30{bottom:524.310000px;}
.y1ad{bottom:524.670000px;}
.yc0{bottom:526.470000px;}
.y5e{bottom:527.190000px;}
.y9a{bottom:527.550000px;}
.y11b{bottom:531.150000px;}
.y16c{bottom:532.260000px;}
.y1ac{bottom:538.380000px;}
.ye4{bottom:539.100000px;}
.y14d{bottom:539.460000px;}
.y2f{bottom:539.820000px;}
.ybf{bottom:544.500000px;}
.y5d{bottom:545.220000px;}
.y99{bottom:545.580000px;}
.y16b{bottom:545.940000px;}
.y11a{bottom:549.180000px;}
.y1ab{bottom:552.060000px;}
.y2e{bottom:555.660000px;}
.ye3{bottom:557.460000px;}
.y16a{bottom:559.980000px;}
.ybe{bottom:562.860000px;}
.y5c{bottom:563.220000px;}
.y98{bottom:563.580000px;}
.y1aa{bottom:566.100000px;}
.y119{bottom:567.180000px;}
.y127{bottom:567.540000px;}
.y2d{bottom:571.140000px;}
.y169{bottom:573.660000px;}
.ye2{bottom:575.460000px;}
.y1a9{bottom:579.780000px;}
.ybd{bottom:580.860000px;}
.y5b{bottom:581.580000px;}
.y97{bottom:581.940000px;}
.y118{bottom:585.540000px;}
.y2c{bottom:586.620000px;}
.y168{bottom:587.340000px;}
.ye1{bottom:593.460000px;}
.ybc{bottom:598.860000px;}
.y5a{bottom:599.580000px;}
.y96{bottom:599.940000px;}
.y167{bottom:601.380000px;}
.y2b{bottom:602.100000px;}
.y117{bottom:603.540000px;}
.ye0{bottom:611.460000px;}
.y166{bottom:615.060000px;}
.y1a8{bottom:616.860000px;}
.ybb{bottom:617.220000px;}
.y2a{bottom:617.580000px;}
.y95{bottom:617.940000px;}
.y116{bottom:621.540000px;}
.y165{bottom:628.740000px;}
.ydf{bottom:629.820000px;}
.y29{bottom:633.060000px;}
.yba{bottom:635.220000px;}
.y59{bottom:635.940000px;}
.y94{bottom:636.300000px;}
.y115{bottom:639.540000px;}
.y126{bottom:639.900000px;}
.y164{bottom:642.780000px;}
.yde{bottom:647.820000px;}
.y28{bottom:648.540000px;}
.y1a7{bottom:651.420000px;}
.yb9{bottom:653.220000px;}
.y58{bottom:653.940000px;}
.y93{bottom:654.300000px;}
.y163{bottom:656.460000px;}
.y114{bottom:657.900000px;}
.y27{bottom:664.020000px;}
.y1a6{bottom:665.460000px;}
.ydd{bottom:665.850000px;}
.y162{bottom:670.170000px;}
.yb8{bottom:671.610000px;}
.y57{bottom:671.970000px;}
.y92{bottom:672.330000px;}
.y113{bottom:675.930000px;}
.y1a5{bottom:679.170000px;}
.y26{bottom:679.890000px;}
.ydc{bottom:684.210000px;}
.yb7{bottom:689.610000px;}
.y56{bottom:689.970000px;}
.y91{bottom:690.690000px;}
.y1a4{bottom:692.850000px;}
.y112{bottom:693.930000px;}
.y125{bottom:694.290000px;}
.y25{bottom:695.370000px;}
.y161{bottom:697.890000px;}
.ydb{bottom:702.210000px;}
.y1a3{bottom:706.890000px;}
.yb6{bottom:707.610000px;}
.y55{bottom:708.330000px;}
.y90{bottom:708.690000px;}
.y24{bottom:710.850000px;}
.y160{bottom:711.570000px;}
.y111{bottom:712.290000px;}
.yda{bottom:720.210000px;}
.y1a2{bottom:720.570000px;}
.yb5{bottom:725.610000px;}
.y23{bottom:726.330000px;}
.y8f{bottom:726.690000px;}
.y110{bottom:730.290000px;}
.y1a1{bottom:734.250000px;}
.yd9{bottom:738.570000px;}
.y15f{bottom:739.290000px;}
.y22{bottom:741.810000px;}
.y54{bottom:744.330000px;}
.y8e{bottom:745.050000px;}
.yb4{bottom:747.570000px;}
.y10f{bottom:748.290000px;}
.y124{bottom:748.650000px;}
.y15e{bottom:752.970000px;}
.yd8{bottom:756.570000px;}
.y21{bottom:757.290000px;}
.y1a0{bottom:761.970000px;}
.y53{bottom:762.690000px;}
.y8d{bottom:763.050000px;}
.y1d8{bottom:765.210000px;}
.y10e{bottom:766.650000px;}
.y15d{bottom:767.010000px;}
.y20{bottom:772.770000px;}
.yb3{bottom:774.570000px;}
.y19f{bottom:775.650000px;}
.y52{bottom:780.690000px;}
.y8c{bottom:784.650000px;}
.y1f{bottom:788.250000px;}
.y19e{bottom:789.690000px;}
.yb2{bottom:792.930000px;}
.y15c{bottom:794.370000px;}
.y1d7{bottom:797.970000px;}
.y51{bottom:798.690000px;}
.y10d{bottom:802.695000px;}
.y123{bottom:803.055000px;}
.y19d{bottom:803.415000px;}
.y1e{bottom:803.775000px;}
.y15b{bottom:808.455000px;}
.y8b{bottom:810.975000px;}
.y50{bottom:817.095000px;}
.y1d{bottom:819.615000px;}
.y10c{bottom:821.055000px;}
.y15a{bottom:822.135000px;}
.yb1{bottom:828.975000px;}
.y1d6{bottom:830.775000px;}
.y19c{bottom:831.135000px;}
.y1c{bottom:835.095000px;}
.y159{bottom:835.815000px;}
.y10b{bottom:839.055000px;}
.y19b{bottom:844.815000px;}
.y8a{bottom:846.975000px;}
.y158{bottom:849.855000px;}
.y1b{bottom:850.575000px;}
.y4f{bottom:853.095000px;}
.y10a{bottom:857.055000px;}
.y19a{bottom:858.495000px;}
.y157{bottom:863.535000px;}
.y89{bottom:865.335000px;}
.y1a{bottom:866.055000px;}
.y4e{bottom:871.455000px;}
.y199{bottom:872.535000px;}
.y109{bottom:875.055000px;}
.y122{bottom:875.415000px;}
.y156{bottom:877.215000px;}
.y19{bottom:881.535000px;}
.y88{bottom:883.335000px;}
.y198{bottom:886.215000px;}
.y155{bottom:891.255000px;}
.y4d{bottom:893.415000px;}
.y1d5{bottom:895.935000px;}
.y18{bottom:897.015000px;}
.y197{bottom:899.895000px;}
.y87{bottom:901.335000px;}
.y154{bottom:904.935000px;}
.y108{bottom:911.415000px;}
.y17{bottom:912.495000px;}
.y196{bottom:913.935000px;}
.y153{bottom:918.615000px;}
.y86{bottom:919.695000px;}
.y195{bottom:927.615000px;}
.y16{bottom:927.975000px;}
.y1d4{bottom:928.695000px;}
.y107{bottom:929.415000px;}
.y121{bottom:929.775000px;}
.y152{bottom:932.655000px;}
.y4c{bottom:933.765000px;}
.y85{bottom:937.725000px;}
.y194{bottom:941.325000px;}
.y15{bottom:943.845000px;}
.y106{bottom:947.805000px;}
.y193{bottom:955.365000px;}
.y84{bottom:955.725000px;}
.y151{bottom:956.085000px;}
.y14{bottom:959.325000px;}
.y105{bottom:965.805000px;}
.y1d3{bottom:966.525000px;}
.y4b{bottom:968.685000px;}
.y192{bottom:969.045000px;}
.y83{bottom:974.085000px;}
.y13{bottom:974.805000px;}
.y191{bottom:982.725000px;}
.y104{bottom:983.805000px;}
.y120{bottom:984.165000px;}
.y12{bottom:990.285000px;}
.y82{bottom:992.085000px;}
.y190{bottom:996.765000px;}
.y103{bottom:1002.165000px;}
.y11{bottom:1005.765000px;}
.y1d2{bottom:1009.365000px;}
.y81{bottom:1010.085000px;}
.y18f{bottom:1010.445000px;}
.y102{bottom:1020.165000px;}
.y10{bottom:1021.245000px;}
.y18e{bottom:1024.125000px;}
.y80{bottom:1028.445000px;}
.yf{bottom:1036.725000px;}
.y101{bottom:1038.165000px;}
.y7f{bottom:1046.445000px;}
.y18d{bottom:1051.845000px;}
.y1d1{bottom:1052.565000px;}
.y100{bottom:1056.525000px;}
.y7e{bottom:1064.445000px;}
.y18c{bottom:1065.525000px;}
.y1d0{bottom:1069.890000px;}
.ye{bottom:1070.970000px;}
.yff{bottom:1074.570000px;}
.y18b{bottom:1079.610000px;}
.y7d{bottom:1082.490000px;}
.y1cf{bottom:1087.170000px;}
.yfe{bottom:1092.570000px;}
.y18a{bottom:1093.290000px;}
.y7c{bottom:1100.850000px;}
.y1ce{bottom:1104.090000px;}
.y189{bottom:1106.970000px;}
.yfd{bottom:1110.570000px;}
.yd{bottom:1112.370000px;}
.y7b{bottom:1118.850000px;}
.y188{bottom:1121.010000px;}
.y1cd{bottom:1121.370000px;}
.yfc{bottom:1132.170000px;}
.y187{bottom:1134.690000px;}
.y7a{bottom:1136.850000px;}
.y1cc{bottom:1138.650000px;}
.y186{bottom:1148.370000px;}
.yc{bottom:1153.770000px;}
.y79{bottom:1155.210000px;}
.y1cb{bottom:1155.930000px;}
.y185{bottom:1162.410000px;}
.y78{bottom:1173.210000px;}
.y184{bottom:1176.090000px;}
.y76{bottom:1214.640000px;}
.y2{bottom:1217.520000px;}
.y75{bottom:1233.360000px;}
.y1{bottom:1234.800000px;}
.hb{height:33.180469px;}
.hc{height:33.528516px;}
.h13{height:34.595859px;}
.ha{height:38.608594px;}
.h5{height:39.166875px;}
.h9{height:39.650625px;}
.h3{height:42.229688px;}
.h2{height:42.672656px;}
.h4{height:43.560000px;}
.hf{height:44.031094px;}
.h12{height:44.798906px;}
.h8{height:46.736719px;}
.h10{height:49.848750px;}
.he{height:50.273438px;}
.h6{height:51.480000px;}
.h11{height:71.613281px;}
.hd{height:83.453906px;}
.h7{height:100.546875px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w2{width:185.865000px;}
.w3{width:267.945000px;}
.w4{width:893.159987px;}
.w0{width:893.160000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x5{left:10.830000px;}
.x6{left:64.116000px;}
.xb{left:70.236000px;}
.xa{left:81.036000px;}
.x7{left:87.156000px;}
.x18{left:91.475987px;}
.x10{left:106.235987px;}
.x8{left:110.916000px;}
.x16{left:126.755987px;}
.x11{left:149.111987px;}
.x1b{left:158.114987px;}
.x15{left:164.234987px;}
.x1a{left:178.274987px;}
.x17{left:181.874987px;}
.x9{left:259.305000px;}
.x3{left:268.305000px;}
.x1{left:399.420000px;}
.x2{left:432.540000px;}
.x1c{left:435.779987px;}
.xf{left:446.579987px;}
.xc{left:457.380000px;}
.xd{left:468.180000px;}
.x14{left:469.619987px;}
.x13{left:472.139987px;}
.x4{left:473.580000px;}
.x12{left:476.099987px;}
.x19{left:478.619987px;}
.xe{left:565.050000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.lsa{letter-spacing:-3.200000pt;}
.ls20{letter-spacing:-2.560000pt;}
.ls9{letter-spacing:-1.280000pt;}
.ls10{letter-spacing:-1.264000pt;}
.ls1c{letter-spacing:-0.864000pt;}
.ls1b{letter-spacing:-0.832000pt;}
.ls8{letter-spacing:-0.640000pt;}
.lse{letter-spacing:-0.432533pt;}
.ls18{letter-spacing:-0.414933pt;}
.lsb{letter-spacing:-0.320000pt;}
.ls27{letter-spacing:-0.222933pt;}
.ls19{letter-spacing:-0.017920pt;}
.ls28{letter-spacing:-0.014080pt;}
.lsc{letter-spacing:-0.013867pt;}
.ls7{letter-spacing:0.000000pt;}
.ls4{letter-spacing:0.014080pt;}
.ls12{letter-spacing:0.017920pt;}
.ls1f{letter-spacing:0.106667pt;}
.ls6{letter-spacing:0.160000pt;}
.ls5{letter-spacing:0.201387pt;}
.ls29{letter-spacing:0.222933pt;}
.ls1d{letter-spacing:0.376320pt;}
.lsf{letter-spacing:0.414933pt;}
.ls21{letter-spacing:0.432533pt;}
.ls11{letter-spacing:0.450667pt;}
.ls24{letter-spacing:0.591360pt;}
.ls2{letter-spacing:0.640000pt;}
.ls26{letter-spacing:0.960000pt;}
.lsd{letter-spacing:1.504000pt;}
.ls3{letter-spacing:2.240000pt;}
.ls17{letter-spacing:2.974720pt;}
.ls16{letter-spacing:4.254720pt;}
.ls1a{letter-spacing:4.736000pt;}
.ls14{letter-spacing:8.094720pt;}
.ls25{letter-spacing:10.017280pt;}
.ls15{letter-spacing:11.934720pt;}
.ls0{letter-spacing:12.800000pt;}
.ls1{letter-spacing:16.320000pt;}
.ls13{letter-spacing:23.454720pt;}
.ls1e{letter-spacing:23.465387pt;}
.ls23{letter-spacing:31.777280pt;}
.ls22{letter-spacing:36.254720pt;}
.ws14{word-spacing:-53.760000pt;}
.wsb{word-spacing:-13.890667pt;}
.ws13{word-spacing:-13.872533pt;}
.ws9{word-spacing:-13.854933pt;}
.ws11{word-spacing:-13.816320pt;}
.ws10{word-spacing:-13.457920pt;}
.ws4{word-spacing:-13.440000pt;}
.wsf{word-spacing:-13.422080pt;}
.wsc{word-spacing:-13.025067pt;}
.wsd{word-spacing:-13.007467pt;}
.wse{word-spacing:-12.176000pt;}
.ws0{word-spacing:-12.160000pt;}
.ws6{word-spacing:-12.064000pt;}
.ws3{word-spacing:-11.200000pt;}
.ws16{word-spacing:-11.151360pt;}
.ws12{word-spacing:-10.880000pt;}
.ws19{word-spacing:-10.782933pt;}
.ws15{word-spacing:-10.574080pt;}
.ws1{word-spacing:-10.560000pt;}
.ws5{word-spacing:-10.546133pt;}
.ws18{word-spacing:-10.545920pt;}
.ws17{word-spacing:-10.337067pt;}
.ws7{word-spacing:-9.920000pt;}
.ws2{word-spacing:-7.360000pt;}
.wsa{word-spacing:0.000000pt;}
.ws8{word-spacing:26.624960pt;}
._7{margin-left:-9.093465pt;}
._2{margin-left:-6.180908pt;}
._e{margin-left:-4.488426pt;}
._5{margin-left:-3.440402pt;}
._b{margin-left:-2.514237pt;}
._0{margin-left:-1.290132pt;}
._1{width:1.021332pt;}
._4{width:1.957333pt;}
._6{width:3.516909pt;}
._8{width:5.176212pt;}
._10{width:6.883732pt;}
._c{width:7.782449pt;}
._d{width:8.834033pt;}
._f{width:9.820385pt;}
._18{width:10.834324pt;}
._24{width:12.048765pt;}
._11{width:13.670428pt;}
._17{width:14.714772pt;}
._2e{width:15.605429pt;}
._1d{width:16.544588pt;}
._1c{width:17.502973pt;}
._27{width:18.551640pt;}
._1b{width:19.507277pt;}
._14{width:20.622384pt;}
._a{width:21.937183pt;}
._9{width:23.198515pt;}
._13{width:24.707952pt;}
._12{width:25.707267pt;}
._25{width:26.880000pt;}
._22{width:28.224000pt;}
._23{width:29.126073pt;}
._26{width:30.041250pt;}
._31{width:31.008362pt;}
._15{width:31.923228pt;}
._16{width:32.951980pt;}
._21{width:34.215886pt;}
._20{width:35.481600pt;}
._29{width:37.122452pt;}
._2f{width:38.356588pt;}
._30{width:39.728532pt;}
._32{width:40.762918pt;}
._1a{width:41.858685pt;}
._19{width:43.048599pt;}
._33{width:44.170583pt;}
._34{width:45.737852pt;}
._35{width:46.782893pt;}
._36{width:47.795519pt;}
._2d{width:51.113492pt;}
._2c{width:53.060905pt;}
._38{width:56.795948pt;}
._37{width:57.784320pt;}
._2a{width:62.241705pt;}
._2b{width:63.436585pt;}
._39{width:72.744322pt;}
._1e{width:76.853229pt;}
._3a{width:79.622400pt;}
._1f{width:88.676494pt;}
._28{width:93.918397pt;}
._3{width:478.949333pt;}
.fs1{font-size:42.240000pt;}
.fs4{font-size:48.640000pt;}
.fs0{font-size:53.760000pt;}
.fs3{font-size:58.880000pt;}
.fs6{font-size:64.000000pt;}
.fs5{font-size:106.240000pt;}
.fs2{font-size:128.000000pt;}
.y77{bottom:-12.832000pt;}
.y0{bottom:0.000000pt;}
.y7{bottom:4.480000pt;}
.y8{bottom:5.472000pt;}
.y4{bottom:6.112000pt;}
.yb{bottom:11.200000pt;}
.y6{bottom:16.640000pt;}
.y3{bottom:16.992000pt;}
.ya{bottom:23.680000pt;}
.y5{bottom:28.800000pt;}
.y9{bottom:35.840000pt;}
.y1ca{bottom:71.392000pt;}
.y14c{bottom:76.832000pt;}
.y135{bottom:78.432000pt;}
.y74{bottom:81.952000pt;}
.yd7{bottom:83.232000pt;}
.y4a{bottom:83.872000pt;}
.y11f{bottom:85.472000pt;}
.y1c9{bottom:85.792000pt;}
.y14b{bottom:92.832000pt;}
.y134{bottom:94.752000pt;}
.y49{bottom:96.352000pt;}
.y73{bottom:98.272000pt;}
.yb0{bottom:98.592000pt;}
.yd6{bottom:99.232000pt;}
.yfb{bottom:101.792000pt;}
.y48{bottom:108.512000pt;}
.y14a{bottom:108.832000pt;}
.y1c8{bottom:110.432000pt;}
.y133{bottom:110.752000pt;}
.y72{bottom:114.272000pt;}
.yaf{bottom:114.592000pt;}
.yd5{bottom:115.232000pt;}
.yfa{bottom:117.824000pt;}
.y1c7{bottom:122.624000pt;}
.y149{bottom:124.864000pt;}
.y132{bottom:126.784000pt;}
.y183{bottom:129.664000pt;}
.y71{bottom:130.304000pt;}
.yae{bottom:130.624000pt;}
.yd4{bottom:131.584000pt;}
.yf9{bottom:133.826667pt;}
.y47{bottom:134.786667pt;}
.y1c6{bottom:135.106667pt;}
.y148{bottom:141.186667pt;}
.y182{bottom:141.826667pt;}
.y131{bottom:142.786667pt;}
.y70{bottom:146.306667pt;}
.y46{bottom:146.946667pt;}
.y1c5{bottom:147.266667pt;}
.yd3{bottom:147.586667pt;}
.yf8{bottom:149.826667pt;}
.y150{bottom:150.146667pt;}
.y181{bottom:154.306667pt;}
.y147{bottom:157.186667pt;}
.y45{bottom:159.106667pt;}
.y1c4{bottom:159.426667pt;}
.y6f{bottom:162.626667pt;}
.yad{bottom:162.946667pt;}
.yf7{bottom:166.146667pt;}
.y180{bottom:166.466667pt;}
.yd2{bottom:166.786667pt;}
.y44{bottom:171.586667pt;}
.y1c3{bottom:171.906667pt;}
.y146{bottom:173.186667pt;}
.y130{bottom:175.106667pt;}
.y6e{bottom:178.626667pt;}
.yac{bottom:178.946667pt;}
.yf6{bottom:182.146667pt;}
.y43{bottom:183.746667pt;}
.y1c2{bottom:184.066667pt;}
.yd1{bottom:186.946667pt;}
.y145{bottom:189.506667pt;}
.y12f{bottom:191.106667pt;}
.y6d{bottom:194.626667pt;}
.yab{bottom:195.266667pt;}
.y42{bottom:195.906667pt;}
.y1c1{bottom:196.226667pt;}
.yf5{bottom:198.146667pt;}
.y14f{bottom:198.466667pt;}
.yd0{bottom:203.266667pt;}
.y144{bottom:205.506667pt;}
.y12e{bottom:207.426667pt;}
.y41{bottom:208.706667pt;}
.y6c{bottom:210.946667pt;}
.yaa{bottom:211.266667pt;}
.yf4{bottom:214.466667pt;}
.y17f{bottom:215.426667pt;}
.ycf{bottom:219.266667pt;}
.y1c0{bottom:220.866667pt;}
.y143{bottom:221.506667pt;}
.y12d{bottom:223.426667pt;}
.y40{bottom:223.746667pt;}
.y6b{bottom:226.946667pt;}
.ya9{bottom:227.266667pt;}
.y17e{bottom:227.906667pt;}
.yf3{bottom:230.466667pt;}
.y1bf{bottom:233.026667pt;}
.yce{bottom:235.266667pt;}
.y3f{bottom:237.533333pt;}
.y142{bottom:237.853333pt;}
.y12c{bottom:239.453333pt;}
.y17d{bottom:240.093333pt;}
.y6a{bottom:242.973333pt;}
.ya8{bottom:243.293333pt;}
.y1be{bottom:245.533333pt;}
.yf2{bottom:246.493333pt;}
.y14e{bottom:246.813333pt;}
.ycd{bottom:251.293333pt;}
.y3e{bottom:251.613333pt;}
.y17c{bottom:252.253333pt;}
.y141{bottom:253.853333pt;}
.y1bd{bottom:257.693333pt;}
.y69{bottom:259.293333pt;}
.ya7{bottom:259.613333pt;}
.yf1{bottom:262.813333pt;}
.y17b{bottom:264.733333pt;}
.y3d{bottom:265.373333pt;}
.ycc{bottom:267.613333pt;}
.y140{bottom:269.853333pt;}
.y68{bottom:275.293333pt;}
.ya6{bottom:275.613333pt;}
.y17a{bottom:276.893333pt;}
.yf0{bottom:278.813333pt;}
.y3c{bottom:279.133333pt;}
.y1bc{bottom:282.333333pt;}
.ycb{bottom:283.613333pt;}
.y13f{bottom:286.173333pt;}
.y179{bottom:289.053333pt;}
.y67{bottom:291.293333pt;}
.ya5{bottom:291.613333pt;}
.y3b{bottom:292.893333pt;}
.y1bb{bottom:294.493333pt;}
.yef{bottom:294.813333pt;}
.y12b{bottom:295.133333pt;}
.yca{bottom:299.613333pt;}
.y178{bottom:301.533333pt;}
.y13e{bottom:302.173333pt;}
.y1ba{bottom:306.653333pt;}
.y66{bottom:307.613333pt;}
.ya4{bottom:307.933333pt;}
.yee{bottom:311.133333pt;}
.y177{bottom:313.693333pt;}
.y13d{bottom:318.173333pt;}
.yc9{bottom:318.813333pt;}
.y1b9{bottom:319.133333pt;}
.y65{bottom:323.613333pt;}
.ya3{bottom:323.933333pt;}
.y176{bottom:325.853333pt;}
.yed{bottom:327.133333pt;}
.y3a{bottom:328.093333pt;}
.y1b8{bottom:331.293333pt;}
.y13c{bottom:334.173333pt;}
.y175{bottom:338.013333pt;}
.yc8{bottom:339.293333pt;}
.y64{bottom:339.613333pt;}
.ya2{bottom:339.933333pt;}
.y39{bottom:341.853333pt;}
.yec{bottom:343.133333pt;}
.y1b7{bottom:343.453333pt;}
.y13b{bottom:350.493333pt;}
.yc7{bottom:355.333333pt;}
.y38{bottom:355.653333pt;}
.y1b6{bottom:355.973333pt;}
.ya1{bottom:356.293333pt;}
.yeb{bottom:359.173333pt;}
.y12a{bottom:359.493333pt;}
.y174{bottom:362.693333pt;}
.y13a{bottom:366.533333pt;}
.y1b5{bottom:368.133333pt;}
.y37{bottom:369.413333pt;}
.yc6{bottom:371.333333pt;}
.y63{bottom:371.973333pt;}
.ya0{bottom:372.293333pt;}
.y173{bottom:374.853333pt;}
.yea{bottom:375.493333pt;}
.y1b4{bottom:380.293333pt;}
.y139{bottom:382.533333pt;}
.y36{bottom:383.493333pt;}
.y172{bottom:387.333333pt;}
.yc5{bottom:387.653333pt;}
.y62{bottom:387.973333pt;}
.y9f{bottom:388.293333pt;}
.ye9{bottom:391.493333pt;}
.y1b3{bottom:392.773333pt;}
.y35{bottom:397.253333pt;}
.y138{bottom:398.853333pt;}
.y171{bottom:399.493333pt;}
.yc4{bottom:403.653333pt;}
.y61{bottom:403.973333pt;}
.y9e{bottom:404.613333pt;}
.y1b2{bottom:404.933333pt;}
.ye8{bottom:407.493333pt;}
.y129{bottom:407.813333pt;}
.y34{bottom:411.013333pt;}
.y170{bottom:411.653333pt;}
.y137{bottom:414.853333pt;}
.y1b1{bottom:417.093333pt;}
.yc3{bottom:419.653333pt;}
.y60{bottom:420.293333pt;}
.y9d{bottom:420.613333pt;}
.y11e{bottom:423.813333pt;}
.y16f{bottom:424.133333pt;}
.y33{bottom:424.773333pt;}
.ye7{bottom:426.693333pt;}
.y1b0{bottom:429.573333pt;}
.y136{bottom:430.853333pt;}
.yc2{bottom:435.653333pt;}
.y5f{bottom:436.293333pt;}
.y9c{bottom:436.613333pt;}
.y32{bottom:438.533333pt;}
.y11d{bottom:439.813333pt;}
.y1af{bottom:441.733333pt;}
.ye6{bottom:447.173333pt;}
.y16e{bottom:448.453333pt;}
.yc1{bottom:451.973333pt;}
.y31{bottom:452.293333pt;}
.y9b{bottom:452.933333pt;}
.y1ae{bottom:453.893333pt;}
.y11c{bottom:455.813333pt;}
.y128{bottom:456.133333pt;}
.y16d{bottom:460.933333pt;}
.ye5{bottom:463.173333pt;}
.y30{bottom:466.053333pt;}
.y1ad{bottom:466.373333pt;}
.yc0{bottom:467.973333pt;}
.y5e{bottom:468.613333pt;}
.y9a{bottom:468.933333pt;}
.y11b{bottom:472.133333pt;}
.y16c{bottom:473.120000pt;}
.y1ac{bottom:478.560000pt;}
.ye4{bottom:479.200000pt;}
.y14d{bottom:479.520000pt;}
.y2f{bottom:479.840000pt;}
.ybf{bottom:484.000000pt;}
.y5d{bottom:484.640000pt;}
.y99{bottom:484.960000pt;}
.y16b{bottom:485.280000pt;}
.y11a{bottom:488.160000pt;}
.y1ab{bottom:490.720000pt;}
.y2e{bottom:493.920000pt;}
.ye3{bottom:495.520000pt;}
.y16a{bottom:497.760000pt;}
.ybe{bottom:500.320000pt;}
.y5c{bottom:500.640000pt;}
.y98{bottom:500.960000pt;}
.y1aa{bottom:503.200000pt;}
.y119{bottom:504.160000pt;}
.y127{bottom:504.480000pt;}
.y2d{bottom:507.680000pt;}
.y169{bottom:509.920000pt;}
.ye2{bottom:511.520000pt;}
.y1a9{bottom:515.360000pt;}
.ybd{bottom:516.320000pt;}
.y5b{bottom:516.960000pt;}
.y97{bottom:517.280000pt;}
.y118{bottom:520.480000pt;}
.y2c{bottom:521.440000pt;}
.y168{bottom:522.080000pt;}
.ye1{bottom:527.520000pt;}
.ybc{bottom:532.320000pt;}
.y5a{bottom:532.960000pt;}
.y96{bottom:533.280000pt;}
.y167{bottom:534.560000pt;}
.y2b{bottom:535.200000pt;}
.y117{bottom:536.480000pt;}
.ye0{bottom:543.520000pt;}
.y166{bottom:546.720000pt;}
.y1a8{bottom:548.320000pt;}
.ybb{bottom:548.640000pt;}
.y2a{bottom:548.960000pt;}
.y95{bottom:549.280000pt;}
.y116{bottom:552.480000pt;}
.y165{bottom:558.880000pt;}
.ydf{bottom:559.840000pt;}
.y29{bottom:562.720000pt;}
.yba{bottom:564.640000pt;}
.y59{bottom:565.280000pt;}
.y94{bottom:565.600000pt;}
.y115{bottom:568.480000pt;}
.y126{bottom:568.800000pt;}
.y164{bottom:571.360000pt;}
.yde{bottom:575.840000pt;}
.y28{bottom:576.480000pt;}
.y1a7{bottom:579.040000pt;}
.yb9{bottom:580.640000pt;}
.y58{bottom:581.280000pt;}
.y93{bottom:581.600000pt;}
.y163{bottom:583.520000pt;}
.y114{bottom:584.800000pt;}
.y27{bottom:590.240000pt;}
.y1a6{bottom:591.520000pt;}
.ydd{bottom:591.866667pt;}
.y162{bottom:595.706667pt;}
.yb8{bottom:596.986667pt;}
.y57{bottom:597.306667pt;}
.y92{bottom:597.626667pt;}
.y113{bottom:600.826667pt;}
.y1a5{bottom:603.706667pt;}
.y26{bottom:604.346667pt;}
.ydc{bottom:608.186667pt;}
.yb7{bottom:612.986667pt;}
.y56{bottom:613.306667pt;}
.y91{bottom:613.946667pt;}
.y1a4{bottom:615.866667pt;}
.y112{bottom:616.826667pt;}
.y125{bottom:617.146667pt;}
.y25{bottom:618.106667pt;}
.y161{bottom:620.346667pt;}
.ydb{bottom:624.186667pt;}
.y1a3{bottom:628.346667pt;}
.yb6{bottom:628.986667pt;}
.y55{bottom:629.626667pt;}
.y90{bottom:629.946667pt;}
.y24{bottom:631.866667pt;}
.y160{bottom:632.506667pt;}
.y111{bottom:633.146667pt;}
.yda{bottom:640.186667pt;}
.y1a2{bottom:640.506667pt;}
.yb5{bottom:644.986667pt;}
.y23{bottom:645.626667pt;}
.y8f{bottom:645.946667pt;}
.y110{bottom:649.146667pt;}
.y1a1{bottom:652.666667pt;}
.yd9{bottom:656.506667pt;}
.y15f{bottom:657.146667pt;}
.y22{bottom:659.386667pt;}
.y54{bottom:661.626667pt;}
.y8e{bottom:662.266667pt;}
.yb4{bottom:664.506667pt;}
.y10f{bottom:665.146667pt;}
.y124{bottom:665.466667pt;}
.y15e{bottom:669.306667pt;}
.yd8{bottom:672.506667pt;}
.y21{bottom:673.146667pt;}
.y1a0{bottom:677.306667pt;}
.y53{bottom:677.946667pt;}
.y8d{bottom:678.266667pt;}
.y1d8{bottom:680.186667pt;}
.y10e{bottom:681.466667pt;}
.y15d{bottom:681.786667pt;}
.y20{bottom:686.906667pt;}
.yb3{bottom:688.506667pt;}
.y19f{bottom:689.466667pt;}
.y52{bottom:693.946667pt;}
.y8c{bottom:697.466667pt;}
.y1f{bottom:700.666667pt;}
.y19e{bottom:701.946667pt;}
.yb2{bottom:704.826667pt;}
.y15c{bottom:706.106667pt;}
.y1d7{bottom:709.306667pt;}
.y51{bottom:709.946667pt;}
.y10d{bottom:713.506667pt;}
.y123{bottom:713.826667pt;}
.y19d{bottom:714.146667pt;}
.y1e{bottom:714.466667pt;}
.y15b{bottom:718.626667pt;}
.y8b{bottom:720.866667pt;}
.y50{bottom:726.306667pt;}
.y1d{bottom:728.546667pt;}
.y10c{bottom:729.826667pt;}
.y15a{bottom:730.786667pt;}
.yb1{bottom:736.866667pt;}
.y1d6{bottom:738.466667pt;}
.y19c{bottom:738.786667pt;}
.y1c{bottom:742.306667pt;}
.y159{bottom:742.946667pt;}
.y10b{bottom:745.826667pt;}
.y19b{bottom:750.946667pt;}
.y8a{bottom:752.866667pt;}
.y158{bottom:755.426667pt;}
.y1b{bottom:756.066667pt;}
.y4f{bottom:758.306667pt;}
.y10a{bottom:761.826667pt;}
.y19a{bottom:763.106667pt;}
.y157{bottom:767.586667pt;}
.y89{bottom:769.186667pt;}
.y1a{bottom:769.826667pt;}
.y4e{bottom:774.626667pt;}
.y199{bottom:775.586667pt;}
.y109{bottom:777.826667pt;}
.y122{bottom:778.146667pt;}
.y156{bottom:779.746667pt;}
.y19{bottom:783.586667pt;}
.y88{bottom:785.186667pt;}
.y198{bottom:787.746667pt;}
.y155{bottom:792.226667pt;}
.y4d{bottom:794.146667pt;}
.y1d5{bottom:796.386667pt;}
.y18{bottom:797.346667pt;}
.y197{bottom:799.906667pt;}
.y87{bottom:801.186667pt;}
.y154{bottom:804.386667pt;}
.y108{bottom:810.146667pt;}
.y17{bottom:811.106667pt;}
.y196{bottom:812.386667pt;}
.y153{bottom:816.546667pt;}
.y86{bottom:817.506667pt;}
.y195{bottom:824.546667pt;}
.y16{bottom:824.866667pt;}
.y1d4{bottom:825.506667pt;}
.y107{bottom:826.146667pt;}
.y121{bottom:826.466667pt;}
.y152{bottom:829.026667pt;}
.y4c{bottom:830.013333pt;}
.y85{bottom:833.533333pt;}
.y194{bottom:836.733333pt;}
.y15{bottom:838.973333pt;}
.y106{bottom:842.493333pt;}
.y193{bottom:849.213333pt;}
.y84{bottom:849.533333pt;}
.y151{bottom:849.853333pt;}
.y14{bottom:852.733333pt;}
.y105{bottom:858.493333pt;}
.y1d3{bottom:859.133333pt;}
.y4b{bottom:861.053333pt;}
.y192{bottom:861.373333pt;}
.y83{bottom:865.853333pt;}
.y13{bottom:866.493333pt;}
.y191{bottom:873.533333pt;}
.y104{bottom:874.493333pt;}
.y120{bottom:874.813333pt;}
.y12{bottom:880.253333pt;}
.y82{bottom:881.853333pt;}
.y190{bottom:886.013333pt;}
.y103{bottom:890.813333pt;}
.y11{bottom:894.013333pt;}
.y1d2{bottom:897.213333pt;}
.y81{bottom:897.853333pt;}
.y18f{bottom:898.173333pt;}
.y102{bottom:906.813333pt;}
.y10{bottom:907.773333pt;}
.y18e{bottom:910.333333pt;}
.y80{bottom:914.173333pt;}
.yf{bottom:921.533333pt;}
.y101{bottom:922.813333pt;}
.y7f{bottom:930.173333pt;}
.y18d{bottom:934.973333pt;}
.y1d1{bottom:935.613333pt;}
.y100{bottom:939.133333pt;}
.y7e{bottom:946.173333pt;}
.y18c{bottom:947.133333pt;}
.y1d0{bottom:951.013333pt;}
.ye{bottom:951.973333pt;}
.yff{bottom:955.173333pt;}
.y18b{bottom:959.653333pt;}
.y7d{bottom:962.213333pt;}
.y1cf{bottom:966.373333pt;}
.yfe{bottom:971.173333pt;}
.y18a{bottom:971.813333pt;}
.y7c{bottom:978.533333pt;}
.y1ce{bottom:981.413333pt;}
.y189{bottom:983.973333pt;}
.yfd{bottom:987.173333pt;}
.yd{bottom:988.773333pt;}
.y7b{bottom:994.533333pt;}
.y188{bottom:996.453333pt;}
.y1cd{bottom:996.773333pt;}
.yfc{bottom:1006.373333pt;}
.y187{bottom:1008.613333pt;}
.y7a{bottom:1010.533333pt;}
.y1cc{bottom:1012.133333pt;}
.y186{bottom:1020.773333pt;}
.yc{bottom:1025.573333pt;}
.y79{bottom:1026.853333pt;}
.y1cb{bottom:1027.493333pt;}
.y185{bottom:1033.253333pt;}
.y78{bottom:1042.853333pt;}
.y184{bottom:1045.413333pt;}
.y76{bottom:1079.680000pt;}
.y2{bottom:1082.240000pt;}
.y75{bottom:1096.320000pt;}
.y1{bottom:1097.600000pt;}
.hb{height:29.493750pt;}
.hc{height:29.803125pt;}
.h13{height:30.751875pt;}
.ha{height:34.318750pt;}
.h5{height:34.815000pt;}
.h9{height:35.245000pt;}
.h3{height:37.537500pt;}
.h2{height:37.931250pt;}
.h4{height:38.720000pt;}
.hf{height:39.138750pt;}
.h12{height:39.821250pt;}
.h8{height:41.543750pt;}
.h10{height:44.310000pt;}
.he{height:44.687500pt;}
.h6{height:45.760000pt;}
.h11{height:63.656250pt;}
.hd{height:74.181250pt;}
.h7{height:89.375000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w2{width:165.213333pt;}
.w3{width:238.173333pt;}
.w4{width:793.919988pt;}
.w0{width:793.920000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x5{left:9.626667pt;}
.x6{left:56.992000pt;}
.xb{left:62.432000pt;}
.xa{left:72.032000pt;}
.x7{left:77.472000pt;}
.x18{left:81.311988pt;}
.x10{left:94.431988pt;}
.x8{left:98.592000pt;}
.x16{left:112.671988pt;}
.x11{left:132.543988pt;}
.x1b{left:140.546655pt;}
.x15{left:145.986655pt;}
.x1a{left:158.466655pt;}
.x17{left:161.666655pt;}
.x9{left:230.493333pt;}
.x3{left:238.493333pt;}
.x1{left:355.040000pt;}
.x2{left:384.480000pt;}
.x1c{left:387.359988pt;}
.xf{left:396.959988pt;}
.xc{left:406.560000pt;}
.xd{left:416.160000pt;}
.x14{left:417.439988pt;}
.x13{left:419.679988pt;}
.x4{left:420.960000pt;}
.x12{left:423.199988pt;}
.x19{left:425.439988pt;}
.xe{left:502.266667pt;}
}




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