
    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_a44414efa2310fdc5601e898.woff')format("woff");}.ff1{font-family:ff1;line-height:0.910645;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_40d5476e0c0266d246319f81.woff')format("woff");}.ff2{font-family:ff2;line-height:0.916016;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_ea8dcce4b7c5809a83cd50e9.woff')format("woff");}.ff3{font-family:ff3;line-height:0.857910;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_2faee4e3d6dc094b3e7a9814.woff')format("woff");}.ff4{font-family:ff4;line-height:0.893555;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_820f6927a4f60c9d1d45230d.woff')format("woff");}.ff5{font-family:ff5;line-height:0.686523;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_d8f656914fb94ed3e1365afc.woff')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_f8325136574c8bbca47af142.woff')format("woff");}.ff7{font-family:ff7;line-height:0.682129;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_b2342b68c200d54e3b6eca49.woff')format("woff");}.ff8{font-family:ff8;line-height:0.938477;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_ebb4c65d6e52dcea9c08b7c1.woff')format("woff");}.ff9{font-family:ff9;line-height:0.926758;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_0a9f2b43d1168892e46bdf5b.woff')format("woff");}.ffa{font-family:ffa;line-height:0.866699;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_5216774d5b426651394f9a54.woff')format("woff");}.ffb{font-family:ffb;line-height:0.904297;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_1ed5d63515f4c59bb5859cae.woff')format("woff");}.ffc{font-family:ffc;line-height:0.861328;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_a6c1efedd97bf3f460d082bd.woff')format("woff");}.ffd{font-family:ffd;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;}
.m5{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);}
.m0{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.249851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);}
.m1{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);}
.m2{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);}
.m4{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);}
.v1{vertical-align:-7.919997px;}
.v0{vertical-align:0.000000px;}
.ls5{letter-spacing:0.000000px;}
.ls2{letter-spacing:0.018600px;}
.ls8{letter-spacing:0.019875px;}
.ls9{letter-spacing:0.021238px;}
.lsc{letter-spacing:0.021240px;}
.lsb{letter-spacing:0.021282px;}
.ls4{letter-spacing:0.043018px;}
.ls1{letter-spacing:0.237796px;}
.lsa{letter-spacing:0.297780px;}
.ls7{letter-spacing:2.892299px;}
.ls3{letter-spacing:3.645059px;}
.ls6{letter-spacing:3.899878px;}
.ls0{letter-spacing:1276.170031px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 rgb(83,129,53),0 0.015em rgb(83,129,53),0.015em 0 rgb(83,129,53),0 -0.015em  rgb(83,129,53);}
.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(83,129,53);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1{word-spacing:-47.375981px;}
.ws2{word-spacing:-39.322064px;}
.ws4{word-spacing:-32.418587px;}
.wsd{word-spacing:-18.021275px;}
.ws8{word-spacing:-17.999993px;}
.ws0{word-spacing:-16.509790px;}
.ws3{word-spacing:-15.011994px;}
.ws5{word-spacing:-14.939994px;}
.wsa{word-spacing:-13.505755px;}
.ws6{word-spacing:-12.203995px;}
.ws7{word-spacing:0.000000px;}
.wsb{word-spacing:92.275977px;}
.ws9{word-spacing:93.618143px;}
.wsc{word-spacing:95.875918px;}
._2a{margin-left:-9.627179px;}
._2f{margin-left:-8.178056px;}
._30{margin-left:-6.787240px;}
._2{margin-left:-5.681560px;}
._12{margin-left:-4.546012px;}
._3{margin-left:-3.342642px;}
._1{margin-left:-1.570800px;}
._0{width:1.003097px;}
._b{width:2.358061px;}
._11{width:3.839109px;}
._5{width:4.888074px;}
._4{width:5.963088px;}
._7{width:6.974763px;}
._6{width:8.273827px;}
._d{width:9.634934px;}
._a{width:11.138833px;}
._c{width:12.833108px;}
._8{width:13.887966px;}
._14{width:15.026737px;}
._9{width:16.095893px;}
._10{width:18.981148px;}
._e{width:20.292093px;}
._f{width:21.348462px;}
._13{width:23.411450px;}
._22{width:24.573051px;}
._24{width:25.601341px;}
._23{width:26.841550px;}
._29{width:28.622114px;}
._2c{width:30.212959px;}
._2e{width:34.282692px;}
._1a{width:35.781481px;}
._1b{width:36.791272px;}
._2b{width:38.284040px;}
._2d{width:43.275041px;}
._25{width:67.988818px;}
._27{width:71.449890px;}
._17{width:75.402651px;}
._16{width:105.224543px;}
._1f{width:107.082480px;}
._1e{width:120.203842px;}
._18{width:123.224709px;}
._28{width:143.330788px;}
._1d{width:146.870761px;}
._26{width:161.963661px;}
._20{width:174.158158px;}
._21{width:276.090320px;}
._19{width:345.474761px;}
._15{width:599.490148px;}
._1c{width:992.442465px;}
.fc1{color:rgb(64,64,64);}
.fc2{color:rgb(255,255,255);}
.fc8{color:rgb(51,51,51);}
.fcd{color:rgb(13,13,13);}
.fca{color:rgb(0,176,80);}
.fcc{color:rgb(89,89,89);}
.fc3{color:rgb(192,0,0);}
.fc4{color:rgb(0,112,192);}
.fc5{color:rgb(83,129,53);}
.fc9{color:rgb(5,99,193);}
.fc0{color:rgb(0,0,0);}
.fc7{color:rgb(44,62,80);}
.fc6{color:rgb(0,32,96);}
.fcb{color:transparent;}
.fs2{font-size:53.999978px;}
.fs0{font-size:59.759976px;}
.fs3{font-size:66.239974px;}
.fs1{font-size:71.999971px;}
.y5{bottom:-11.339990px;}
.y0{bottom:0.000000px;}
.y4{bottom:0.120234px;}
.yc{bottom:1.620048px;}
.y40{bottom:3.419289px;}
.y114{bottom:3.599140px;}
.ye8{bottom:3.599280px;}
.ye5{bottom:3.779272px;}
.yea{bottom:3.779287px;}
.y15{bottom:3.959056px;}
.y98{bottom:3.959088px;}
.y9d{bottom:3.959105px;}
.y108{bottom:3.959112px;}
.ya0{bottom:3.959121px;}
.ya2{bottom:3.959130px;}
.ya4{bottom:3.959139px;}
.ya6{bottom:3.959147px;}
.ya8{bottom:3.959156px;}
.y112{bottom:4.319140px;}
.y4d{bottom:4.858948px;}
.y9b{bottom:4.859096px;}
.ya{bottom:4.860038px;}
.yb{bottom:28.560240px;}
.y9{bottom:49.260240px;}
.y7{bottom:54.120278px;}
.y8{bottom:56.100278px;}
.yd1{bottom:129.539948px;}
.y137{bottom:132.239947px;}
.y16a{bottom:134.579946px;}
.y45{bottom:143.219943px;}
.y90{bottom:143.579943px;}
.y72{bottom:144.119942px;}
.yd0{bottom:150.239940px;}
.y12a{bottom:151.319939px;}
.yba{bottom:155.639938px;}
.y169{bottom:158.519937px;}
.y44{bottom:163.919934px;}
.y8f{bottom:164.279934px;}
.y136{bottom:164.459934px;}
.y71{bottom:164.819934px;}
.ycf{bottom:170.939932px;}
.y129{bottom:172.379931px;}
.yb9{bottom:176.339929px;}
.y168{bottom:182.459927px;}
.y14d{bottom:182.819927px;}
.y43{bottom:184.619926px;}
.y8e{bottom:184.979926px;}
.yce{bottom:191.639923px;}
.y128{bottom:193.079923px;}
.yb8{bottom:197.039921px;}
.yed{bottom:197.579921px;}
.y18b{bottom:203.159919px;}
.y70{bottom:206.579917px;}
.ycd{bottom:212.339915px;}
.y127{bottom:213.779914px;}
.yb7{bottom:217.739913px;}
.yec{bottom:218.279913px;}
.y167{bottom:218.459913px;}
.y14c{bottom:223.319911px;}
.y8d{bottom:226.559909px;}
.y18a{bottom:227.099909px;}
.y6f{bottom:227.279909px;}
.y42{bottom:229.619908px;}
.ycc{bottom:233.039907px;}
.y126{bottom:234.479906px;}
.yb6{bottom:238.439905px;}
.yeb{bottom:238.979904px;}
.y166{bottom:242.579903px;}
.y14a{bottom:246.179902px;}
.y8c{bottom:247.259901px;}
.y6e{bottom:247.979901px;}
.y189{bottom:251.039900px;}
.ycb{bottom:253.739899px;}
.y125{bottom:255.179898px;}
.yb5{bottom:259.139896px;}
.y142{bottom:265.619894px;}
.y165{bottom:266.519893px;}
.y8b{bottom:267.959893px;}
.y6d{bottom:268.679893px;}
.y3f{bottom:274.080600px;}
.yca{bottom:274.439890px;}
.y124{bottom:275.879890px;}
.y41{bottom:277.499889px;}
.ye9{bottom:277.500600px;}
.yb4{bottom:279.839888px;}
.y188{bottom:287.039885px;}
.y8a{bottom:288.659885px;}
.y6c{bottom:289.379884px;}
.y143{bottom:294.599882px;}
.y24{bottom:297.119881px;}
.ye7{bottom:297.300600px;}
.y123{bottom:297.479881px;}
.yb3{bottom:300.539880px;}
.y164{bottom:302.519879px;}
.yc9{bottom:304.499878px;}
.y89{bottom:309.359876px;}
.y6b{bottom:310.079876px;}
.y187{bottom:310.979876px;}
.y14b{bottom:314.399874px;}
.ye4{bottom:316.920600px;}
.y122{bottom:318.539873px;}
.y51{bottom:319.979872px;}
.ye6{bottom:320.699872px;}
.yb2{bottom:321.239872px;}
.y144{bottom:323.399871px;}
.y163{bottom:326.459869px;}
.y88{bottom:330.059868px;}
.y6a{bottom:330.779868px;}
.y186{bottom:334.919866px;}
.y50{bottom:339.059864px;}
.y121{bottom:339.239864px;}
.ye3{bottom:340.319864px;}
.yb1{bottom:341.939863px;}
.yc8{bottom:346.259861px;}
.y162{bottom:350.399860px;}
.y87{bottom:350.759860px;}
.y69{bottom:351.479859px;}
.y145{bottom:352.199859px;}
.y4f{bottom:358.139857px;}
.y120{bottom:359.939856px;}
.yc7{bottom:366.959853px;}
.y185{bottom:370.919852px;}
.y86{bottom:371.459851px;}
.y68{bottom:372.179851px;}
.y4e{bottom:377.219849px;}
.y11f{bottom:380.639848px;}
.y146{bottom:380.999848px;}
.ye2{bottom:381.359847px;}
.y161{bottom:386.399845px;}
.yb0{bottom:386.939845px;}
.yc6{bottom:387.659845px;}
.y85{bottom:392.159843px;}
.y67{bottom:392.879843px;}
.y184{bottom:394.859842px;}
.y11e{bottom:401.339839px;}
.yc5{bottom:408.359837px;}
.y147{bottom:409.799836px;}
.y160{bottom:410.339836px;}
.y3e{bottom:411.059836px;}
.y84{bottom:412.859835px;}
.y183{bottom:418.979832px;}
.y11d{bottom:422.039831px;}
.ye1{bottom:423.119831px;}
.y3d{bottom:428.339829px;}
.yaf{bottom:428.519829px;}
.yc4{bottom:429.059828px;}
.y15f{bottom:434.279826px;}
.y66{bottom:434.459826px;}
.y23{bottom:435.179826px;}
.y148{bottom:438.779824px;}
.y11c{bottom:442.739823px;}
.y18f{bottom:442.919823px;}
.ye0{bottom:443.819822px;}
.yae{bottom:449.219820px;}
.yc3{bottom:449.759820px;}
.y22{bottom:450.659820px;}
.y3c{bottom:454.619818px;}
.y182{bottom:454.799818px;}
.y11b{bottom:463.439815px;}
.ydf{bottom:464.519814px;}
.y21{bottom:466.139814px;}
.y149{bottom:467.579813px;}
.yad{bottom:469.919812px;}
.y15e{bottom:470.279812px;}
.yc2{bottom:470.459812px;}
.y3b{bottom:471.899811px;}
.y65{bottom:472.259811px;}
.y83{bottom:475.319810px;}
.y20{bottom:478.739809px;}
.y181{bottom:478.919808px;}
.y11a{bottom:484.139806px;}
.yde{bottom:485.219806px;}
.y3a{bottom:488.999804px;}
.yac{bottom:490.619804px;}
.yc1{bottom:491.159804px;}
.y15d{bottom:494.219802px;}
.y82{bottom:496.019802px;}
.y180{bottom:502.859799px;}
.y119{bottom:504.839798px;}
.ydd{bottom:505.919798px;}
.y39{bottom:506.279797px;}
.y135{bottom:507.719797px;}
.yab{bottom:511.319795px;}
.yc0{bottom:511.859795px;}
.y81{bottom:516.719793px;}
.y15c{bottom:518.159793px;}
.y38{bottom:523.559791px;}
.y118{bottom:525.539790px;}
.ydc{bottom:526.619789px;}
.y18e{bottom:526.799789px;}
.y134{bottom:531.659787px;}
.yaa{bottom:532.199787px;}
.y80{bottom:537.419785px;}
.y17f{bottom:538.859784px;}
.y37{bottom:540.839784px;}
.y117{bottom:546.239782px;}
.ydb{bottom:547.319781px;}
.y15b{bottom:548.219781px;}
.y18d{bottom:550.739780px;}
.ybf{bottom:556.859777px;}
.y36{bottom:558.119777px;}
.y17e{bottom:562.799775px;}
.y133{bottom:563.879774px;}
.yda{bottom:568.019773px;}
.y35{bottom:575.219770px;}
.y116{bottom:576.119770px;}
.ya9{bottom:577.019769px;}
.y7f{bottom:578.819768px;}
.y141{bottom:582.239767px;}
.y17d{bottom:586.739765px;}
.yd9{bottom:588.719765px;}
.y34{bottom:592.499763px;}
.ybe{bottom:592.859763px;}
.y1f{bottom:595.019762px;}
.y15a{bottom:595.919762px;}
.ya7{bottom:606.540600px;}
.yd8{bottom:609.419756px;}
.y33{bottom:609.779756px;}
.y17c{bottom:610.679756px;}
.y115{bottom:612.119755px;}
.y159{bottom:616.619753px;}
.y7e{bottom:620.579752px;}
.y140{bottom:622.739751px;}
.y32{bottom:627.059749px;}
.ya5{bottom:627.960600px;}
.y110{bottom:629.580600px;}
.yd7{bottom:630.119748px;}
.y10f{bottom:633.539747px;}
.y158{bottom:637.319745px;}
.y1e{bottom:638.759744px;}
.y7d{bottom:641.279743px;}
.ybd{bottom:643.619743px;}
.y31{bottom:644.339742px;}
.y13e{bottom:645.599742px;}
.y111{bottom:645.960600px;}
.y17b{bottom:646.679741px;}
.y113{bottom:646.680600px;}
.ya3{bottom:649.380600px;}
.yd6{bottom:650.819740px;}
.y10d{bottom:651.000600px;}
.y1d{bottom:654.059738px;}
.y10e{bottom:654.959738px;}
.y157{bottom:658.019737px;}
.y30{bottom:661.619735px;}
.y7c{bottom:661.979735px;}
.y138{bottom:665.039734px;}
.y1c{bottom:669.359732px;}
.y17a{bottom:670.619732px;}
.ya1{bottom:670.800600px;}
.yd5{bottom:671.519731px;}
.y10b{bottom:672.420600px;}
.ybc{bottom:675.659730px;}
.y10c{bottom:676.379729px;}
.y2f{bottom:678.719729px;}
.y7b{bottom:682.679727px;}
.y1b{bottom:683.399727px;}
.y9f{bottom:692.400600px;}
.y109{bottom:694.020600px;}
.y179{bottom:694.739722px;}
.y2e{bottom:695.999722px;}
.y10a{bottom:697.979721px;}
.y156{bottom:699.419720px;}
.y7a{bottom:703.379719px;}
.y2d{bottom:713.279715px;}
.y139{bottom:715.259714px;}
.y107{bottom:715.440600px;}
.yd4{bottom:716.519713px;}
.y9e{bottom:717.059713px;}
.y106{bottom:719.399712px;}
.y155{bottom:720.119712px;}
.y79{bottom:724.079710px;}
.y1a{bottom:725.879710px;}
.y2c{bottom:730.559708px;}
.y9c{bottom:734.520600px;}
.y154{bottom:740.819704px;}
.y64{bottom:744.779702px;}
.y2b{bottom:747.839701px;}
.yd3{bottom:752.519699px;}
.y9a{bottom:754.320600px;}
.y178{bottom:754.679698px;}
.y99{bottom:759.179696px;}
.y105{bottom:761.879695px;}
.y13f{bottom:763.319695px;}
.y2a{bottom:765.119694px;}
.y63{bottom:765.479694px;}
.y19{bottom:768.359693px;}
.y97{bottom:776.640600px;}
.y177{bottom:778.619689px;}
.y96{bottom:780.599688px;}
.y29{bottom:782.219687px;}
.y153{bottom:782.579687px;}
.yd2{bottom:784.559686px;}
.y62{bottom:785.999686px;}
.y28{bottom:799.499680px;}
.y18c{bottom:802.559679px;}
.yf5{bottom:802.919679px;}
.y152{bottom:803.279679px;}
.y104{bottom:803.459679px;}
.y61{bottom:806.699677px;}
.y18{bottom:810.839676px;}
.y176{bottom:814.619674px;}
.y13a{bottom:815.519674px;}
.y27{bottom:816.779673px;}
.y95{bottom:823.079671px;}
.y151{bottom:823.979670px;}
.y103{bottom:824.159670px;}
.y17{bottom:826.499669px;}
.y60{bottom:827.399669px;}
.y25{bottom:830.999668px;}
.y26{bottom:834.059666px;}
.yee{bottom:834.239666px;}
.y175{bottom:838.559665px;}
.y150{bottom:844.679662px;}
.y102{bottom:844.859662px;}
.y5f{bottom:848.099661px;}
.y78{bottom:848.459661px;}
.y14{bottom:854.940600px;}
.y12{bottom:858.719657px;}
.y13{bottom:858.899656px;}
.y16{bottom:861.779655px;}
.y174{bottom:862.499655px;}
.y94{bottom:864.659654px;}
.y14f{bottom:865.379654px;}
.y101{bottom:865.559654px;}
.y13b{bottom:865.739654px;}
.yef{bottom:867.179653px;}
.y5e{bottom:868.799652px;}
.y77{bottom:869.159652px;}
.y93{bottom:885.539646px;}
.y14e{bottom:886.079646px;}
.y100{bottom:886.259645px;}
.y173{bottom:886.439645px;}
.y5d{bottom:889.499644px;}
.y76{bottom:889.859644px;}
.y11{bottom:895.979642px;}
.yf0{bottom:898.679641px;}
.yff{bottom:906.959637px;}
.y5c{bottom:910.199636px;}
.y75{bottom:910.559636px;}
.y13c{bottom:915.779634px;}
.y10{bottom:919.919632px;}
.y172{bottom:922.439631px;}
.yfe{bottom:927.659629px;}
.yf1{bottom:930.179628px;}
.y92{bottom:930.539628px;}
.y5b{bottom:930.899628px;}
.y74{bottom:931.259627px;}
.y171{bottom:946.379621px;}
.yfd{bottom:948.359621px;}
.y73{bottom:951.959619px;}
.yf{bottom:955.919618px;}
.yf2{bottom:961.679615px;}
.y13d{bottom:965.999614px;}
.y91{bottom:966.359613px;}
.yfc{bottom:969.059612px;}
.y170{bottom:970.319612px;}
.y5a{bottom:972.659611px;}
.yfb{bottom:989.759604px;}
.y132{bottom:991.739603px;}
.ye{bottom:991.919603px;}
.y59{bottom:993.359603px;}
.y16f{bottom:1006.319597px;}
.yfa{bottom:1010.459596px;}
.y131{bottom:1012.799595px;}
.y58{bottom:1014.059594px;}
.yd{bottom:1015.859594px;}
.yf3{bottom:1024.859590px;}
.y16e{bottom:1030.439588px;}
.yf9{bottom:1031.159588px;}
.y130{bottom:1033.499587px;}
.y57{bottom:1034.759586px;}
.y46{bottom:1050.239580px;}
.y4b{bottom:1051.139580px;}
.yf8{bottom:1051.859579px;}
.y12f{bottom:1054.199578px;}
.y16d{bottom:1054.379578px;}
.y56{bottom:1055.459578px;}
.yf4{bottom:1056.359577px;}
.y4a{bottom:1069.499572px;}
.yf7{bottom:1072.559571px;}
.y12e{bottom:1074.899570px;}
.ybb{bottom:1075.799570px;}
.y55{bottom:1076.159570px;}
.y49{bottom:1087.859565px;}
.y16c{bottom:1090.379564px;}
.yf6{bottom:1093.259563px;}
.y12d{bottom:1095.599562px;}
.y54{bottom:1096.859561px;}
.y16b{bottom:1114.319554px;}
.y48{bottom:1115.039554px;}
.y12c{bottom:1116.299553px;}
.y53{bottom:1117.559553px;}
.y4c{bottom:1125.840600px;}
.y47{bottom:1133.399547px;}
.y12b{bottom:1137.899545px;}
.y52{bottom:1138.259545px;}
.y6{bottom:1166.519533px;}
.y3{bottom:1168.859532px;}
.y2{bottom:1201.979519px;}
.y1{bottom:1219.259512px;}
.h1d{height:3.600000px;}
.h1c{height:4.320000px;}
.h3{height:5.760000px;}
.h11{height:17.640000px;}
.h1a{height:18.360000px;}
.h18{height:18.540000px;}
.h7{height:18.720000px;}
.h16{height:20.160000px;}
.h14{height:20.520000px;}
.hc{height:21.060000px;}
.h15{height:21.600000px;}
.h6{height:21.960000px;}
.hb{height:35.991197px;}
.h10{height:36.624009px;}
.h4{height:36.703110px;}
.hf{height:39.313461px;}
.h13{height:39.830258px;}
.h5{height:39.840804px;}
.he{height:40.297132px;}
.h1{height:41.522679px;}
.h12{height:43.390178px;}
.h1b{height:44.090490px;}
.h17{height:44.893107px;}
.h19{height:46.025138px;}
.ha{height:47.988262px;}
.hd{height:48.550762px;}
.h8{height:48.796855px;}
.h9{height:50.027324px;}
.h2{height:53.121073px;}
.h0{height:1263.000000px;}
.w3{width:3.240000px;}
.w5{width:3.420000px;}
.w6{width:4.320000px;}
.w14{width:4.500000px;}
.we{width:5.940000px;}
.w2d{width:7.560000px;}
.w7{width:7.740000px;}
.w24{width:7.920000px;}
.w20{width:8.280000px;}
.w8{width:8.820000px;}
.wa{width:9.000000px;}
.w12{width:9.360000px;}
.w2{width:10.620000px;}
.w4{width:13.500000px;}
.w17{width:16.920000px;}
.w27{width:18.000000px;}
.w19{width:25.020000px;}
.w16{width:27.180000px;}
.w1d{width:47.880000px;}
.w9{width:50.580000px;}
.wc{width:52.920000px;}
.w10{width:56.880000px;}
.w28{width:65.160000px;}
.wf{width:77.580000px;}
.w13{width:85.320000px;}
.w1c{width:92.700000px;}
.w2c{width:93.240000px;}
.w18{width:99.540000px;}
.w2a{width:102.240000px;}
.w15{width:106.020000px;}
.wb{width:128.520000px;}
.w29{width:129.420000px;}
.w2b{width:134.460000px;}
.w11{width:138.420000px;}
.w22{width:149.220000px;}
.w26{width:150.480000px;}
.w25{width:157.860000px;}
.w1a{width:160.380000px;}
.wd{width:163.620000px;}
.w1b{width:171.540000px;}
.w1e{width:222.300000px;}
.w1f{width:239.400000px;}
.w21{width:342.360000px;}
.w23{width:402.840000px;}
.w1{width:892.500000px;}
.w0{width:892.830000px;}
.x22{left:-4.680255px;}
.x0{left:0.000000px;}
.x14{left:97.739961px;}
.x11{left:100.079951px;}
.x12{left:102.239959px;}
.x1{left:108.539957px;}
.x2{left:110.701628px;}
.x16{left:114.659954px;}
.x24{left:116.459953px;}
.xc{left:118.439953px;}
.x60{left:120.239926px;}
.x2c{left:125.460000px;}
.x5{left:132.659947px;}
.xa{left:135.179946px;}
.x25{left:144.540000px;}
.x15{left:146.339941px;}
.x65{left:154.259938px;}
.x13{left:156.419937px;}
.x26{left:160.739936px;}
.x63{left:162.899935px;}
.x18{left:170.639830px;}
.x4d{left:173.699931px;}
.x68{left:178.199929px;}
.x62{left:185.759926px;}
.x4b{left:189.899924px;}
.x5e{left:203.040000px;}
.x2d{left:213.660000px;}
.x31{left:217.620000px;}
.x64{left:220.499912px;}
.xd{left:222.839911px;}
.xe{left:225.719910px;}
.x17{left:240.659857px;}
.x4c{left:245.339902px;}
.x4a{left:246.599901px;}
.x5b{left:250.920000px;}
.xf{left:260.100000px;}
.x55{left:266.940000px;}
.x1b{left:269.279892px;}
.x67{left:271.259891px;}
.x19{left:279.899888px;}
.x10{left:281.692387px;}
.x1a{left:283.319887px;}
.x56{left:292.140000px;}
.x9{left:294.839882px;}
.xb{left:300.779618px;}
.x1e{left:303.299797px;}
.x6a{left:308.699877px;}
.x4e{left:312.120000px;}
.x4f{left:328.319869px;}
.x3c{left:332.280000px;}
.x57{left:346.320000px;}
.x42{left:355.680000px;}
.x49{left:374.219850px;}
.x61{left:378.000354px;}
.x29{left:381.960000px;}
.x1d{left:388.619845px;}
.x1f{left:399.599840px;}
.x8{left:406.439079px;}
.x3a{left:412.920000px;}
.x1c{left:419.940270px;}
.x6{left:431.099828px;}
.x2a{left:432.540000px;}
.x69{left:437.939825px;}
.x66{left:441.719823px;}
.x50{left:451.260000px;}
.x45{left:457.020000px;}
.x27{left:462.960000px;}
.x51{left:467.459813px;}
.x28{left:471.779811px;}
.x3d{left:474.660000px;}
.x58{left:476.460000px;}
.x3e{left:480.600000px;}
.x20{left:496.439801px;}
.x2b{left:510.480000px;}
.x47{left:519.120000px;}
.x32{left:520.200000px;}
.x33{left:529.380000px;}
.x3f{left:532.980000px;}
.x43{left:535.499786px;}
.x2e{left:545.580000px;}
.x52{left:548.460000px;}
.x2f{left:551.520000px;}
.x53{left:564.839774px;}
.x3b{left:573.300000px;}
.x44{left:580.860000px;}
.x34{left:614.700000px;}
.x35{left:619.200000px;}
.x30{left:629.100000px;}
.x21{left:641.520000px;}
.x5c{left:658.079737px;}
.x4{left:666.179734px;}
.x59{left:680.580000px;}
.x46{left:684.540000px;}
.x48{left:693.360000px;}
.x41{left:708.659717px;}
.x5d{left:717.840000px;}
.x36{left:725.220000px;}
.x5a{left:726.840000px;}
.x23{left:735.659668px;}
.x37{left:752.400000px;}
.x40{left:755.280000px;}
.x38{left:756.900000px;}
.x54{left:767.880000px;}
.x5f{left:771.479207px;}
.x39{left:773.820000px;}
.x7{left:781.380000px;}
.x3{left:784.979686px;}
@media print{
.v1{vertical-align:-7.039997pt;}
.v0{vertical-align:0.000000pt;}
.ls5{letter-spacing:0.000000pt;}
.ls2{letter-spacing:0.016533pt;}
.ls8{letter-spacing:0.017667pt;}
.ls9{letter-spacing:0.018878pt;}
.lsc{letter-spacing:0.018880pt;}
.lsb{letter-spacing:0.018917pt;}
.ls4{letter-spacing:0.038238pt;}
.ls1{letter-spacing:0.211375pt;}
.lsa{letter-spacing:0.264693pt;}
.ls7{letter-spacing:2.570932pt;}
.ls3{letter-spacing:3.240052pt;}
.ls6{letter-spacing:3.466559pt;}
.ls0{letter-spacing:1134.373361pt;}
.ws1{word-spacing:-42.111983pt;}
.ws2{word-spacing:-34.952946pt;}
.ws4{word-spacing:-28.816521pt;}
.wsd{word-spacing:-16.018911pt;}
.ws8{word-spacing:-15.999994pt;}
.ws0{word-spacing:-14.675369pt;}
.ws3{word-spacing:-13.343995pt;}
.ws5{word-spacing:-13.279995pt;}
.wsa{word-spacing:-12.005115pt;}
.ws6{word-spacing:-10.847996pt;}
.ws7{word-spacing:0.000000pt;}
.wsb{word-spacing:82.023090pt;}
.ws9{word-spacing:83.216127pt;}
.wsc{word-spacing:85.223038pt;}
._2a{margin-left:-8.557492pt;}
._2f{margin-left:-7.269383pt;}
._30{margin-left:-6.033102pt;}
._2{margin-left:-5.050275pt;}
._12{margin-left:-4.040899pt;}
._3{margin-left:-2.971237pt;}
._1{margin-left:-1.396267pt;}
._0{width:0.891642pt;}
._b{width:2.096054pt;}
._11{width:3.412541pt;}
._5{width:4.344955pt;}
._4{width:5.300523pt;}
._7{width:6.199789pt;}
._6{width:7.354513pt;}
._d{width:8.564385pt;}
._a{width:9.901185pt;}
._c{width:11.407208pt;}
._8{width:12.344859pt;}
._14{width:13.357100pt;}
._9{width:14.307460pt;}
._10{width:16.872132pt;}
._e{width:18.037416pt;}
._f{width:18.976411pt;}
._13{width:20.810178pt;}
._22{width:21.842712pt;}
._24{width:22.756747pt;}
._23{width:23.859156pt;}
._29{width:25.441879pt;}
._2c{width:26.855964pt;}
._2e{width:30.473504pt;}
._1a{width:31.805761pt;}
._1b{width:32.703353pt;}
._2b{width:34.030258pt;}
._2d{width:38.466703pt;}
._25{width:60.434505pt;}
._27{width:63.511014pt;}
._17{width:67.024579pt;}
._16{width:93.532927pt;}
._1f{width:95.184427pt;}
._1e{width:106.847860pt;}
._18{width:109.533075pt;}
._28{width:127.405145pt;}
._1d{width:130.551788pt;}
._26{width:143.967698pt;}
._20{width:154.807252pt;}
._21{width:245.413618pt;}
._19{width:307.088676pt;}
._15{width:532.880131pt;}
._1c{width:882.171080pt;}
.fs2{font-size:47.999981pt;}
.fs0{font-size:53.119979pt;}
.fs3{font-size:58.879976pt;}
.fs1{font-size:63.999974pt;}
.y5{bottom:-10.079991pt;}
.y0{bottom:0.000000pt;}
.y4{bottom:0.106875pt;}
.yc{bottom:1.440043pt;}
.y40{bottom:3.039368pt;}
.y114{bottom:3.199235pt;}
.ye8{bottom:3.199360pt;}
.ye5{bottom:3.359353pt;}
.yea{bottom:3.359367pt;}
.y15{bottom:3.519161pt;}
.y98{bottom:3.519189pt;}
.y9d{bottom:3.519204pt;}
.y108{bottom:3.519211pt;}
.ya0{bottom:3.519219pt;}
.ya2{bottom:3.519227pt;}
.ya4{bottom:3.519234pt;}
.ya6{bottom:3.519242pt;}
.ya8{bottom:3.519250pt;}
.y112{bottom:3.839235pt;}
.y4d{bottom:4.319065pt;}
.y9b{bottom:4.319197pt;}
.ya{bottom:4.320034pt;}
.yb{bottom:25.386880pt;}
.y9{bottom:43.786880pt;}
.y7{bottom:48.106914pt;}
.y8{bottom:49.866913pt;}
.yd1{bottom:115.146621pt;}
.y137{bottom:117.546620pt;}
.y16a{bottom:119.626619pt;}
.y45{bottom:127.306616pt;}
.y90{bottom:127.626616pt;}
.y72{bottom:128.106615pt;}
.yd0{bottom:133.546613pt;}
.y12a{bottom:134.506613pt;}
.yba{bottom:138.346611pt;}
.y169{bottom:140.906610pt;}
.y44{bottom:145.706608pt;}
.y8f{bottom:146.026608pt;}
.y136{bottom:146.186608pt;}
.y71{bottom:146.506608pt;}
.ycf{bottom:151.946606pt;}
.y129{bottom:153.226605pt;}
.yb9{bottom:156.746604pt;}
.y168{bottom:162.186602pt;}
.y14d{bottom:162.506602pt;}
.y43{bottom:164.106601pt;}
.y8e{bottom:164.426601pt;}
.yce{bottom:170.346599pt;}
.y128{bottom:171.626598pt;}
.yb8{bottom:175.146597pt;}
.yed{bottom:175.626596pt;}
.y18b{bottom:180.586594pt;}
.y70{bottom:183.626593pt;}
.ycd{bottom:188.746591pt;}
.y127{bottom:190.026591pt;}
.yb7{bottom:193.546589pt;}
.yec{bottom:194.026589pt;}
.y167{bottom:194.186589pt;}
.y14c{bottom:198.506587pt;}
.y8d{bottom:201.386586pt;}
.y18a{bottom:201.866586pt;}
.y6f{bottom:202.026586pt;}
.y42{bottom:204.106585pt;}
.ycc{bottom:207.146584pt;}
.y126{bottom:208.426583pt;}
.yb6{bottom:211.946582pt;}
.yeb{bottom:212.426582pt;}
.y166{bottom:215.626580pt;}
.y14a{bottom:218.826579pt;}
.y8c{bottom:219.786579pt;}
.y6e{bottom:220.426578pt;}
.y189{bottom:223.146577pt;}
.ycb{bottom:225.546576pt;}
.y125{bottom:226.826576pt;}
.yb5{bottom:230.346575pt;}
.y142{bottom:236.106572pt;}
.y165{bottom:236.906572pt;}
.y8b{bottom:238.186571pt;}
.y6d{bottom:238.826571pt;}
.y3f{bottom:243.627200pt;}
.yca{bottom:243.946569pt;}
.y124{bottom:245.226569pt;}
.y41{bottom:246.666568pt;}
.ye9{bottom:246.667200pt;}
.yb4{bottom:248.746567pt;}
.y188{bottom:255.146565pt;}
.y8a{bottom:256.586564pt;}
.y6c{bottom:257.226564pt;}
.y143{bottom:261.866562pt;}
.y24{bottom:264.106561pt;}
.ye7{bottom:264.267200pt;}
.y123{bottom:264.426561pt;}
.yb3{bottom:267.146560pt;}
.y164{bottom:268.906559pt;}
.yc9{bottom:270.666558pt;}
.y89{bottom:274.986557pt;}
.y6b{bottom:275.626556pt;}
.y187{bottom:276.426556pt;}
.y14b{bottom:279.466555pt;}
.ye4{bottom:281.707200pt;}
.y122{bottom:283.146553pt;}
.y51{bottom:284.426553pt;}
.ye6{bottom:285.066553pt;}
.yb2{bottom:285.546552pt;}
.y144{bottom:287.466552pt;}
.y163{bottom:290.186551pt;}
.y88{bottom:293.386549pt;}
.y6a{bottom:294.026549pt;}
.y186{bottom:297.706548pt;}
.y50{bottom:301.386546pt;}
.y121{bottom:301.546546pt;}
.ye3{bottom:302.506546pt;}
.yb1{bottom:303.946545pt;}
.yc8{bottom:307.786544pt;}
.y162{bottom:311.466542pt;}
.y87{bottom:311.786542pt;}
.y69{bottom:312.426542pt;}
.y145{bottom:313.066541pt;}
.y4f{bottom:318.346539pt;}
.y120{bottom:319.946539pt;}
.yc7{bottom:326.186536pt;}
.y185{bottom:329.706535pt;}
.y86{bottom:330.186535pt;}
.y68{bottom:330.826534pt;}
.y4e{bottom:335.306533pt;}
.y11f{bottom:338.346531pt;}
.y146{bottom:338.666531pt;}
.ye2{bottom:338.986531pt;}
.y161{bottom:343.466529pt;}
.yb0{bottom:343.946529pt;}
.yc6{bottom:344.586529pt;}
.y85{bottom:348.586527pt;}
.y67{bottom:349.226527pt;}
.y184{bottom:350.986526pt;}
.y11e{bottom:356.746524pt;}
.yc5{bottom:362.986521pt;}
.y147{bottom:364.266521pt;}
.y160{bottom:364.746521pt;}
.y3e{bottom:365.386521pt;}
.y84{bottom:366.986520pt;}
.y183{bottom:372.426518pt;}
.y11d{bottom:375.146517pt;}
.ye1{bottom:376.106516pt;}
.y3d{bottom:380.746514pt;}
.yaf{bottom:380.906514pt;}
.yc4{bottom:381.386514pt;}
.y15f{bottom:386.026512pt;}
.y66{bottom:386.186512pt;}
.y23{bottom:386.826512pt;}
.y148{bottom:390.026511pt;}
.y11c{bottom:393.546509pt;}
.y18f{bottom:393.706509pt;}
.ye0{bottom:394.506509pt;}
.yae{bottom:399.306507pt;}
.yc3{bottom:399.786507pt;}
.y22{bottom:400.586506pt;}
.y3c{bottom:404.106505pt;}
.y182{bottom:404.266505pt;}
.y11b{bottom:411.946502pt;}
.ydf{bottom:412.906502pt;}
.y21{bottom:414.346501pt;}
.y149{bottom:415.626500pt;}
.yad{bottom:417.706500pt;}
.y15e{bottom:418.026499pt;}
.yc2{bottom:418.186499pt;}
.y3b{bottom:419.466499pt;}
.y65{bottom:419.786499pt;}
.y83{bottom:422.506498pt;}
.y20{bottom:425.546496pt;}
.y181{bottom:425.706496pt;}
.y11a{bottom:430.346495pt;}
.yde{bottom:431.306494pt;}
.y3a{bottom:434.666493pt;}
.yac{bottom:436.106492pt;}
.yc1{bottom:436.586492pt;}
.y15d{bottom:439.306491pt;}
.y82{bottom:440.906490pt;}
.y180{bottom:446.986488pt;}
.y119{bottom:448.746487pt;}
.ydd{bottom:449.706487pt;}
.y39{bottom:450.026487pt;}
.y135{bottom:451.306486pt;}
.yab{bottom:454.506485pt;}
.yc0{bottom:454.986485pt;}
.y81{bottom:459.306483pt;}
.y15c{bottom:460.586482pt;}
.y38{bottom:465.386481pt;}
.y118{bottom:467.146480pt;}
.ydc{bottom:468.106479pt;}
.y18e{bottom:468.266479pt;}
.y134{bottom:472.586478pt;}
.yaa{bottom:473.066477pt;}
.y80{bottom:477.706476pt;}
.y17f{bottom:478.986475pt;}
.y37{bottom:480.746474pt;}
.y117{bottom:485.546472pt;}
.ydb{bottom:486.506472pt;}
.y15b{bottom:487.306472pt;}
.y18d{bottom:489.546471pt;}
.ybf{bottom:494.986469pt;}
.y36{bottom:496.106468pt;}
.y17e{bottom:500.266467pt;}
.y133{bottom:501.226466pt;}
.yda{bottom:504.906465pt;}
.y35{bottom:511.306462pt;}
.y116{bottom:512.106462pt;}
.ya9{bottom:512.906462pt;}
.y7f{bottom:514.506461pt;}
.y141{bottom:517.546460pt;}
.y17d{bottom:521.546458pt;}
.yd9{bottom:523.306457pt;}
.y34{bottom:526.666456pt;}
.ybe{bottom:526.986456pt;}
.y1f{bottom:528.906455pt;}
.y15a{bottom:529.706455pt;}
.ya7{bottom:539.147200pt;}
.yd8{bottom:541.706450pt;}
.y33{bottom:542.026450pt;}
.y17c{bottom:542.826450pt;}
.y115{bottom:544.106449pt;}
.y159{bottom:548.106447pt;}
.y7e{bottom:551.626446pt;}
.y140{bottom:553.546445pt;}
.y32{bottom:557.386444pt;}
.ya5{bottom:558.187200pt;}
.y110{bottom:559.627200pt;}
.yd7{bottom:560.106443pt;}
.y10f{bottom:563.146441pt;}
.y158{bottom:566.506440pt;}
.y1e{bottom:567.786440pt;}
.y7d{bottom:570.026439pt;}
.ybd{bottom:572.106438pt;}
.y31{bottom:572.746438pt;}
.y13e{bottom:573.866437pt;}
.y111{bottom:574.187200pt;}
.y17b{bottom:574.826437pt;}
.y113{bottom:574.827200pt;}
.ya3{bottom:577.227200pt;}
.yd6{bottom:578.506435pt;}
.y10d{bottom:578.667200pt;}
.y1d{bottom:581.386434pt;}
.y10e{bottom:582.186434pt;}
.y157{bottom:584.906433pt;}
.y30{bottom:588.106431pt;}
.y7c{bottom:588.426431pt;}
.y138{bottom:591.146430pt;}
.y1c{bottom:594.986429pt;}
.y17a{bottom:596.106428pt;}
.ya1{bottom:596.267200pt;}
.yd5{bottom:596.906428pt;}
.y10b{bottom:597.707200pt;}
.ybc{bottom:600.586426pt;}
.y10c{bottom:601.226426pt;}
.y2f{bottom:603.306425pt;}
.y7b{bottom:606.826424pt;}
.y1b{bottom:607.466424pt;}
.y9f{bottom:615.467200pt;}
.y109{bottom:616.907200pt;}
.y179{bottom:617.546420pt;}
.y2e{bottom:618.666419pt;}
.y10a{bottom:620.426418pt;}
.y156{bottom:621.706418pt;}
.y7a{bottom:625.226417pt;}
.y2d{bottom:634.026413pt;}
.y139{bottom:635.786412pt;}
.y107{bottom:635.947200pt;}
.yd4{bottom:636.906412pt;}
.y9e{bottom:637.386412pt;}
.y106{bottom:639.466411pt;}
.y155{bottom:640.106411pt;}
.y79{bottom:643.626409pt;}
.y1a{bottom:645.226409pt;}
.y2c{bottom:649.386407pt;}
.y9c{bottom:652.907200pt;}
.y154{bottom:658.506403pt;}
.y64{bottom:662.026402pt;}
.y2b{bottom:664.746401pt;}
.yd3{bottom:668.906399pt;}
.y9a{bottom:670.507200pt;}
.y178{bottom:670.826398pt;}
.y99{bottom:674.826397pt;}
.y105{bottom:677.226396pt;}
.y13f{bottom:678.506395pt;}
.y2a{bottom:680.106395pt;}
.y63{bottom:680.426394pt;}
.y19{bottom:682.986393pt;}
.y97{bottom:690.347200pt;}
.y177{bottom:692.106390pt;}
.y96{bottom:693.866389pt;}
.y29{bottom:695.306389pt;}
.y153{bottom:695.626388pt;}
.yd2{bottom:697.386388pt;}
.y62{bottom:698.666387pt;}
.y28{bottom:710.666382pt;}
.y18c{bottom:713.386381pt;}
.yf5{bottom:713.706381pt;}
.y152{bottom:714.026381pt;}
.y104{bottom:714.186381pt;}
.y61{bottom:717.066380pt;}
.y18{bottom:720.746378pt;}
.y176{bottom:724.106377pt;}
.y13a{bottom:724.906377pt;}
.y27{bottom:726.026376pt;}
.y95{bottom:731.626374pt;}
.y151{bottom:732.426374pt;}
.y103{bottom:732.586374pt;}
.y17{bottom:734.666373pt;}
.y60{bottom:735.466372pt;}
.y25{bottom:738.666371pt;}
.y26{bottom:741.386370pt;}
.yee{bottom:741.546370pt;}
.y175{bottom:745.386369pt;}
.y150{bottom:750.826366pt;}
.y102{bottom:750.986366pt;}
.y5f{bottom:753.866365pt;}
.y78{bottom:754.186365pt;}
.y14{bottom:759.947200pt;}
.y12{bottom:763.306361pt;}
.y13{bottom:763.466361pt;}
.y16{bottom:766.026360pt;}
.y174{bottom:766.666360pt;}
.y94{bottom:768.586359pt;}
.y14f{bottom:769.226359pt;}
.y101{bottom:769.386359pt;}
.y13b{bottom:769.546359pt;}
.yef{bottom:770.826358pt;}
.y5e{bottom:772.266358pt;}
.y77{bottom:772.586358pt;}
.y93{bottom:787.146352pt;}
.y14e{bottom:787.626352pt;}
.y100{bottom:787.786352pt;}
.y173{bottom:787.946351pt;}
.y5d{bottom:790.666350pt;}
.y76{bottom:790.986350pt;}
.y11{bottom:796.426348pt;}
.yf0{bottom:798.826347pt;}
.yff{bottom:806.186344pt;}
.y5c{bottom:809.066343pt;}
.y75{bottom:809.386343pt;}
.y13c{bottom:814.026341pt;}
.y10{bottom:817.706340pt;}
.y172{bottom:819.946339pt;}
.yfe{bottom:824.586337pt;}
.yf1{bottom:826.826336pt;}
.y92{bottom:827.146336pt;}
.y5b{bottom:827.466336pt;}
.y74{bottom:827.786336pt;}
.y171{bottom:841.226330pt;}
.yfd{bottom:842.986329pt;}
.y73{bottom:846.186328pt;}
.yf{bottom:849.706327pt;}
.yf2{bottom:854.826325pt;}
.y13d{bottom:858.666323pt;}
.y91{bottom:858.986323pt;}
.yfc{bottom:861.386322pt;}
.y170{bottom:862.506322pt;}
.y5a{bottom:864.586321pt;}
.yfb{bottom:879.786315pt;}
.y132{bottom:881.546314pt;}
.ye{bottom:881.706314pt;}
.y59{bottom:882.986313pt;}
.y16f{bottom:894.506309pt;}
.yfa{bottom:898.186307pt;}
.y131{bottom:900.266307pt;}
.y58{bottom:901.386306pt;}
.yd{bottom:902.986305pt;}
.yf3{bottom:910.986302pt;}
.y16e{bottom:915.946300pt;}
.yf9{bottom:916.586300pt;}
.y130{bottom:918.666299pt;}
.y57{bottom:919.786299pt;}
.y46{bottom:933.546293pt;}
.y4b{bottom:934.346293pt;}
.yf8{bottom:934.986293pt;}
.y12f{bottom:937.066292pt;}
.y16d{bottom:937.226292pt;}
.y56{bottom:938.186291pt;}
.yf4{bottom:938.986291pt;}
.y4a{bottom:950.666286pt;}
.yf7{bottom:953.386285pt;}
.y12e{bottom:955.466284pt;}
.ybb{bottom:956.266284pt;}
.y55{bottom:956.586284pt;}
.y49{bottom:966.986280pt;}
.y16c{bottom:969.226279pt;}
.yf6{bottom:971.786278pt;}
.y12d{bottom:973.866277pt;}
.y54{bottom:974.986277pt;}
.y16b{bottom:990.506270pt;}
.y48{bottom:991.146270pt;}
.y12c{bottom:992.266270pt;}
.y53{bottom:993.386269pt;}
.y4c{bottom:1000.747200pt;}
.y47{bottom:1007.466264pt;}
.y12b{bottom:1011.466262pt;}
.y52{bottom:1011.786262pt;}
.y6{bottom:1036.906252pt;}
.y3{bottom:1038.986251pt;}
.y2{bottom:1068.426239pt;}
.y1{bottom:1083.786233pt;}
.h1d{height:3.200000pt;}
.h1c{height:3.840000pt;}
.h3{height:5.120000pt;}
.h11{height:15.680000pt;}
.h1a{height:16.320000pt;}
.h18{height:16.480000pt;}
.h7{height:16.640000pt;}
.h16{height:17.920000pt;}
.h14{height:18.240000pt;}
.hc{height:18.720000pt;}
.h15{height:19.200000pt;}
.h6{height:19.520000pt;}
.hb{height:31.992175pt;}
.h10{height:32.554674pt;}
.h4{height:32.624987pt;}
.hf{height:34.945299pt;}
.h13{height:35.404673pt;}
.h5{height:35.414048pt;}
.he{height:35.819673pt;}
.h1{height:36.909048pt;}
.h12{height:38.569047pt;}
.h1b{height:39.191547pt;}
.h17{height:39.904984pt;}
.h19{height:40.911234pt;}
.ha{height:42.656233pt;}
.hd{height:43.156233pt;}
.h8{height:43.374983pt;}
.h9{height:44.468732pt;}
.h2{height:47.218731pt;}
.h0{height:1122.666667pt;}
.w3{width:2.880000pt;}
.w5{width:3.040000pt;}
.w6{width:3.840000pt;}
.w14{width:4.000000pt;}
.we{width:5.280000pt;}
.w2d{width:6.720000pt;}
.w7{width:6.880000pt;}
.w24{width:7.040000pt;}
.w20{width:7.360000pt;}
.w8{width:7.840000pt;}
.wa{width:8.000000pt;}
.w12{width:8.320000pt;}
.w2{width:9.440000pt;}
.w4{width:12.000000pt;}
.w17{width:15.040000pt;}
.w27{width:16.000000pt;}
.w19{width:22.240000pt;}
.w16{width:24.160000pt;}
.w1d{width:42.560000pt;}
.w9{width:44.960000pt;}
.wc{width:47.040000pt;}
.w10{width:50.560000pt;}
.w28{width:57.920000pt;}
.wf{width:68.960000pt;}
.w13{width:75.840000pt;}
.w1c{width:82.400000pt;}
.w2c{width:82.880000pt;}
.w18{width:88.480000pt;}
.w2a{width:90.880000pt;}
.w15{width:94.240000pt;}
.wb{width:114.240000pt;}
.w29{width:115.040000pt;}
.w2b{width:119.520000pt;}
.w11{width:123.040000pt;}
.w22{width:132.640000pt;}
.w26{width:133.760000pt;}
.w25{width:140.320000pt;}
.w1a{width:142.560000pt;}
.wd{width:145.440000pt;}
.w1b{width:152.480000pt;}
.w1e{width:197.600000pt;}
.w1f{width:212.800000pt;}
.w21{width:304.320000pt;}
.w23{width:358.080000pt;}
.w1{width:793.333333pt;}
.w0{width:793.626667pt;}
.x22{left:-4.160226pt;}
.x0{left:0.000000pt;}
.x14{left:86.879965pt;}
.x11{left:88.959957pt;}
.x12{left:90.879964pt;}
.x1{left:96.479961pt;}
.x2{left:98.401447pt;}
.x16{left:101.919959pt;}
.x24{left:103.519959pt;}
.xc{left:105.279958pt;}
.x60{left:106.879934pt;}
.x2c{left:111.520000pt;}
.x5{left:117.919953pt;}
.xa{left:120.159952pt;}
.x25{left:128.480000pt;}
.x15{left:130.079948pt;}
.x65{left:137.119945pt;}
.x13{left:139.039944pt;}
.x26{left:142.879943pt;}
.x63{left:144.799942pt;}
.x18{left:151.679849pt;}
.x4d{left:154.399938pt;}
.x68{left:158.399937pt;}
.x62{left:165.119934pt;}
.x4b{left:168.799932pt;}
.x5e{left:180.480000pt;}
.x2d{left:189.920000pt;}
.x31{left:193.440000pt;}
.x64{left:195.999922pt;}
.xd{left:198.079921pt;}
.xe{left:200.639920pt;}
.x17{left:213.919873pt;}
.x4c{left:218.079913pt;}
.x4a{left:219.199912pt;}
.x5b{left:223.040000pt;}
.xf{left:231.200000pt;}
.x55{left:237.280000pt;}
.x1b{left:239.359904pt;}
.x67{left:241.119904pt;}
.x19{left:248.799900pt;}
.x10{left:250.393233pt;}
.x1a{left:251.839899pt;}
.x56{left:259.680000pt;}
.x9{left:262.079895pt;}
.xb{left:267.359661pt;}
.x1e{left:269.599820pt;}
.x6a{left:274.399890pt;}
.x4e{left:277.440000pt;}
.x4f{left:291.839883pt;}
.x3c{left:295.360000pt;}
.x57{left:307.840000pt;}
.x42{left:316.160000pt;}
.x49{left:332.639867pt;}
.x61{left:336.000315pt;}
.x29{left:339.520000pt;}
.x1d{left:345.439862pt;}
.x1f{left:355.199858pt;}
.x8{left:361.279182pt;}
.x3a{left:367.040000pt;}
.x1c{left:373.280240pt;}
.x6{left:383.199847pt;}
.x2a{left:384.480000pt;}
.x69{left:389.279844pt;}
.x66{left:392.639843pt;}
.x50{left:401.120000pt;}
.x45{left:406.240000pt;}
.x27{left:411.520000pt;}
.x51{left:415.519834pt;}
.x28{left:419.359832pt;}
.x3d{left:421.920000pt;}
.x58{left:423.520000pt;}
.x3e{left:427.200000pt;}
.x20{left:441.279823pt;}
.x2b{left:453.760000pt;}
.x47{left:461.440000pt;}
.x32{left:462.400000pt;}
.x33{left:470.560000pt;}
.x3f{left:473.760000pt;}
.x43{left:475.999810pt;}
.x2e{left:484.960000pt;}
.x52{left:487.520000pt;}
.x2f{left:490.240000pt;}
.x53{left:502.079799pt;}
.x3b{left:509.600000pt;}
.x44{left:516.320000pt;}
.x34{left:546.400000pt;}
.x35{left:550.400000pt;}
.x30{left:559.200000pt;}
.x21{left:570.240000pt;}
.x5c{left:584.959766pt;}
.x4{left:592.159763pt;}
.x59{left:604.960000pt;}
.x46{left:608.480000pt;}
.x48{left:616.320000pt;}
.x41{left:629.919748pt;}
.x5d{left:638.080000pt;}
.x36{left:644.640000pt;}
.x5a{left:646.080000pt;}
.x23{left:653.919705pt;}
.x37{left:668.800000pt;}
.x40{left:671.360000pt;}
.x38{left:672.800000pt;}
.x54{left:682.560000pt;}
.x5f{left:685.759295pt;}
.x39{left:687.840000pt;}
.x7{left:694.560000pt;}
.x3{left:697.759721pt;}
}




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