
    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_94924165b8e765f07b9e8928.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.005000;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_86555b0d3b0cd41f16dd3329.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.005000;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_e7c2194ca8b26d34bf1654a7.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.005000;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_f0ee9cdc6c79bc2322c6506f.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.107910;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_f262f6bb351f3d7a8516c246.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.107910;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_1decc908f6a68e6ac4e9a734.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.475000;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_783ced5077646d048ca4ea46.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.107910;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_c9d722e18bc658f87f040d7c.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.109863;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_e63fd8f4b6ffcc9e111a9e0c.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.692383;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_97988d77b9b9b48937517195.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.922000;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_de86515c215b7d5fd4da124a.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.022949;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_8c9ec4af3d60796cb45590af.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.230000;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_8e7ba2a2cf3645380e8a716b.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.692383;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);}
.m3{transform:matrix(0.268014,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268014,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268014,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.281277,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281277,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281277,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;}
.v1{vertical-align:8.501857px;}
.ls0{letter-spacing:0.000000px;}
.ls1{letter-spacing:19.038201px;}
.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;}
}
.ws3{word-spacing:-24.230394px;}
.ws7{word-spacing:-14.011436px;}
.ws9{word-spacing:-13.437589px;}
.ws4{word-spacing:-12.610134px;}
.ws6{word-spacing:-11.955150px;}
.ws2{word-spacing:-11.706336px;}
.ws1{word-spacing:-11.620260px;}
.wse{word-spacing:-11.208832px;}
.ws5{word-spacing:-10.759500px;}
.wsa{word-spacing:-10.061328px;}
.ws0{word-spacing:0.000000px;}
.ws8{word-spacing:1.794685px;}
.wsb{word-spacing:56.943163px;}
.wsc{word-spacing:78.480953px;}
.wsd{word-spacing:84.280472px;}
._4{margin-left:-17.343592px;}
._f{margin-left:-4.641384px;}
._e{margin-left:-3.418244px;}
._6{margin-left:-2.229368px;}
._9{margin-left:-1.190733px;}
._3{width:1.763284px;}
._1{width:3.324716px;}
._8{width:4.387631px;}
._5{width:5.388358px;}
._2{width:6.633293px;}
._15{width:7.717669px;}
._7{width:8.796967px;}
._b{width:10.520532px;}
._d{width:11.867050px;}
._c{width:13.061829px;}
._a{width:15.536913px;}
._0{width:16.741782px;}
._16{width:17.833142px;}
._11{width:19.749908px;}
._23{width:21.041064px;}
._14{width:22.384823px;}
._13{width:24.115929px;}
._12{width:25.211020px;}
._10{width:26.526087px;}
._24{width:43.111165px;}
._25{width:44.936190px;}
._22{width:68.151995px;}
._18{width:72.130557px;}
._19{width:95.489304px;}
._21{width:134.995945px;}
._1a{width:147.325371px;}
._1d{width:160.416369px;}
._1e{width:169.628269px;}
._1b{width:213.358017px;}
._20{width:410.415408px;}
._1f{width:431.846083px;}
._1c{width:442.664710px;}
._26{width:1298.965676px;}
._17{width:1424.611968px;}
.fc2{color:rgb(33,150,209);}
.fc1{color:rgb(46,116,163);}
.fc0{color:rgb(0,0,0);}
.fse{font-size:26.761800px;}
.fs9{font-size:38.255400px;}
.fsd{font-size:38.256000px;}
.fsa{font-size:41.842200px;}
.fs4{font-size:42.000000px;}
.fs8{font-size:42.237000px;}
.fs5{font-size:43.038000px;}
.fsb{font-size:47.820600px;}
.fs3{font-size:60.000000px;}
.fs1{font-size:63.000000px;}
.fs7{font-size:63.362400px;}
.fs0{font-size:72.000000px;}
.fs6{font-size:80.697000px;}
.fsc{font-size:83.685000px;}
.fs2{font-size:102.000000px;}
.y0{bottom:0.000000px;}
.y23{bottom:0.000732px;}
.y6{bottom:35.925007px;}
.y5f{bottom:47.430000px;}
.y5{bottom:66.525004px;}
.y188{bottom:78.409388px;}
.y13b{bottom:78.409426px;}
.yde{bottom:78.416181px;}
.y14f{bottom:82.831636px;}
.yaa{bottom:85.295382px;}
.y187{bottom:90.400543px;}
.y26{bottom:91.200000px;}
.y13a{bottom:94.142403px;}
.ydd{bottom:94.147962px;}
.y129{bottom:95.082855px;}
.y1dd{bottom:96.692600px;}
.y4{bottom:97.125005px;}
.ya7{bottom:98.222348px;}
.y14e{bottom:98.563418px;}
.y186{bottom:102.305624px;}
.y25{bottom:105.630000px;}
.y1dc{bottom:108.598637px;}
.y139{bottom:109.789304px;}
.ydc{bottom:109.794863px;}
.y128{bottom:110.730951px;}
.ya9{bottom:111.061350px;}
.ya6{bottom:111.063730px;}
.y14d{bottom:114.211514px;}
.y185{bottom:114.295822px;}
.ya8{bottom:115.313250px;}
.y5d{bottom:119.905636px;}
.y1db{bottom:120.588836px;}
.ya5{bottom:123.904155px;}
.y138{bottom:125.521086px;}
.ydb{bottom:125.526645px;}
.y184{bottom:126.200903px;}
.y127{bottom:126.462733px;}
.y14c{bottom:129.943296px;}
.y1da{bottom:132.579034px;}
.y5c{bottom:134.192100px;}
.ya4{bottom:136.744580px;}
.y183{bottom:138.192058px;}
.y22{bottom:139.264499px;}
.y137{bottom:141.167986px;}
.yda{bottom:141.174740px;}
.y126{bottom:142.109633px;}
.y1d9{bottom:144.485071px;}
.y14b{bottom:145.590196px;}
.ya3{bottom:149.585961px;}
.y182{bottom:150.182257px;}
.y1d8{bottom:156.475270px;}
.yd9{bottom:156.906522px;}
.y125{bottom:157.841415px;}
.y58{bottom:159.703536px;}
.y14a{bottom:161.321978px;}
.y181{bottom:162.087337px;}
.ya2{bottom:162.426386px;}
.y1d7{bottom:168.380351px;}
.y136{bottom:172.547864px;}
.yd8{bottom:172.553423px;}
.y124{bottom:173.574392px;}
.y57{bottom:174.075000px;}
.y180{bottom:174.078492px;}
.ya1{bottom:175.267768px;}
.y149{bottom:176.968878px;}
.y1d6{bottom:180.370549px;}
.y17f{bottom:185.983573px;}
.ya0{bottom:188.108193px;}
.yd7{bottom:188.285205px;}
.y123{bottom:189.221293px;}
.y1d5{bottom:192.276586px;}
.y148{bottom:192.701856px;}
.y19{bottom:196.933500px;}
.y17e{bottom:197.973772px;}
.y9f{bottom:201.033736px;}
.yd6{bottom:203.933300px;}
.y1d4{bottom:204.266785px;}
.y135{bottom:204.947516px;}
.y122{bottom:204.953075px;}
.y147{bottom:208.348756px;}
.y21{bottom:209.518500px;}
.y18{bottom:209.533503px;}
.y17d{bottom:209.963970px;}
.y9e{bottom:213.875117px;}
.y1d3{bottom:216.256984px;}
.yd5{bottom:219.665082px;}
.y134{bottom:220.594416px;}
.y121{bottom:220.599975px;}
.y17c{bottom:221.870007px;}
.y20{bottom:222.118502px;}
.y17{bottom:222.133505px;}
.y55{bottom:223.061736px;}
.y146{bottom:224.080538px;}
.y1d2{bottom:228.162064px;}
.y9d{bottom:233.603427px;}
.y17b{bottom:233.860206px;}
.y1f{bottom:234.718504px;}
.y16{bottom:234.733496px;}
.yd4{bottom:235.311983px;}
.y133{bottom:236.326198px;}
.y120{bottom:236.332952px;}
.y54{bottom:238.708637px;}
.y145{bottom:239.727438px;}
.y1d1{bottom:240.153219px;}
.y17a{bottom:245.765286px;}
.y9c{bottom:246.444808px;}
.yd3{bottom:251.043764px;}
.y132{bottom:251.973098px;}
.y11f{bottom:251.979853px;}
.y1d0{bottom:252.058300px;}
.y53{bottom:254.441614px;}
.y144{bottom:255.460416px;}
.y179{bottom:257.755485px;}
.y1e{bottom:259.918497px;}
.y15{bottom:259.933500px;}
.y1cf{bottom:264.048498px;}
.y9b{bottom:266.088000px;}
.yd2{bottom:266.691860px;}
.y131{bottom:267.706076px;}
.y11e{bottom:267.711635px;}
.y178{bottom:269.661522px;}
.y52{bottom:270.088514px;}
.y143{bottom:271.107316px;}
.y1d{bottom:272.518500px;}
.y14{bottom:272.533503px;}
.y1ce{bottom:276.038697px;}
.y177{bottom:281.651721px;}
.yd1{bottom:282.423642px;}
.y130{bottom:283.352976px;}
.y11d{bottom:283.358535px;}
.y1c{bottom:285.118502px;}
.y13{bottom:285.133499px;}
.y9a{bottom:285.817536px;}
.y51{bottom:285.820296px;}
.y142{bottom:286.839098px;}
.y1cd{bottom:287.944734px;}
.y176{bottom:293.641920px;}
.yd0{bottom:298.070543px;}
.y12f{bottom:299.084758px;}
.y11c{bottom:299.091512px;}
.y1cc{bottom:299.934933px;}
.y99{bottom:300.189000px;}
.y50{bottom:301.467197px;}
.y141{bottom:302.485998px;}
.y175{bottom:305.547000px;}
.y1b{bottom:310.318501px;}
.y12{bottom:310.333501px;}
.y1cb{bottom:311.839057px;}
.ycf{bottom:313.802324px;}
.y16c{bottom:314.567454px;}
.y12e{bottom:314.731658px;}
.y11b{bottom:314.738413px;}
.y4f{bottom:317.198978px;}
.y140{bottom:318.218975px;}
.y1a{bottom:322.918500px;}
.y11{bottom:322.933500px;}
.y1ca{bottom:323.830212px;}
.yce{bottom:329.449225px;}
.y16b{bottom:330.215550px;}
.y12d{bottom:330.464636px;}
.y11a{bottom:330.470195px;}
.y4e{bottom:332.847074px;}
.y174{bottom:333.106305px;}
.y13f{bottom:333.865876px;}
.y8a{bottom:334.212156px;}
.y1c9{bottom:335.735293px;}
.ycd{bottom:345.182202px;}
.y16a{bottom:345.947332px;}
.y12c{bottom:346.111536px;}
.y119{bottom:346.117095px;}
.y1c8{bottom:347.725491px;}
.y10{bottom:348.133500px;}
.y4d{bottom:348.578856px;}
.y13e{bottom:349.597658px;}
.y89{bottom:349.943938px;}
.y1c7{bottom:359.715690px;}
.ycc{bottom:360.829102px;}
.y169{bottom:361.679114px;}
.y12b{bottom:361.843318px;}
.y118{bottom:361.848877px;}
.y4c{bottom:364.310638px;}
.y13d{bottom:365.244558px;}
.y88{bottom:365.590839px;}
.y173{bottom:366.611808px;}
.y1c6{bottom:371.621727px;}
.ycb{bottom:376.560884px;}
.y168{bottom:377.326014px;}
.y117{bottom:377.496973px;}
.y4b{bottom:379.957538px;}
.y13c{bottom:380.977535px;}
.y87{bottom:381.323816px;}
.y172{bottom:382.258709px;}
.y1c5{bottom:383.611926px;}
.yf{bottom:386.785499px;}
.yca{bottom:392.207785px;}
.y105{bottom:392.548506px;}
.y167{bottom:393.058991px;}
.y12a{bottom:393.222000px;}
.y116{bottom:393.228754px;}
.y1c4{bottom:395.517006px;}
.y4a{bottom:395.690516px;}
.y86{bottom:396.970716px;}
.y171{bottom:397.990491px;}
.y1c3{bottom:407.507205px;}
.yc9{bottom:407.940762px;}
.ye{bottom:408.044999px;}
.y104{bottom:408.280288px;}
.y166{bottom:408.705892px;}
.y115{bottom:408.875655px;}
.y49{bottom:411.337416px;}
.y98{bottom:412.702498px;}
.y153{bottom:414.652036px;}
.y1c2{bottom:419.498360px;}
.yc8{bottom:423.587662px;}
.y165{bottom:424.437674px;}
.y114{bottom:424.607437px;}
.y152{bottom:426.813036px;}
.y48{bottom:427.069198px;}
.y85{bottom:428.349399px;}
.y170{bottom:429.370368px;}
.y1c1{bottom:431.403440px;}
.yc7{bottom:439.319444px;}
.y103{bottom:439.660166px;}
.y164{bottom:440.084574px;}
.y113{bottom:440.255532px;}
.y151{bottom:441.184500px;}
.y47{bottom:442.716098px;}
.y1c0{bottom:443.393639px;}
.y97{bottom:444.081180px;}
.yc6{bottom:454.966345px;}
.y1bf{bottom:455.299676px;}
.y163{bottom:455.817551px;}
.y112{bottom:455.987314px;}
.y46{bottom:458.449076px;}
.y96{bottom:459.729276px;}
.y1be{bottom:467.289875px;}
.y84{bottom:469.338826px;}
.y16f{bottom:469.593471px;}
.yc5{bottom:470.699322px;}
.y102{bottom:471.379570px;}
.y162{bottom:471.464452px;}
.y111{bottom:471.634215px;}
.y45{bottom:474.095976px;}
.y95{bottom:475.461058px;}
.y1bd{bottom:479.280074px;}
.y83{bottom:485.070608px;}
.y16e{bottom:485.240371px;}
.ye8{bottom:486.346222px;}
.y101{bottom:487.026470px;}
.y161{bottom:487.196233px;}
.y110{bottom:487.365997px;}
.y44{bottom:489.827758px;}
.y94{bottom:491.107959px;}
.y1bc{bottom:491.185154px;}
.y82{bottom:500.802390px;}
.yc4{bottom:502.078004px;}
.y100{bottom:502.758252px;}
.y160{bottom:502.843134px;}
.yd{bottom:502.864502px;}
.y10f{bottom:503.014092px;}
.y1bb{bottom:503.176309px;}
.y43{bottom:505.474658px;}
.y93{bottom:506.839740px;}
.y1ba{bottom:515.081390px;}
.y81{bottom:516.449290px;}
.y16d{bottom:516.620249px;}
.ye7{bottom:517.724904px;}
.yff{bottom:518.405153px;}
.y15f{bottom:518.576111px;}
.y10e{bottom:518.745874px;}
.yc{bottom:520.864502px;}
.y42{bottom:521.207636px;}
.y92{bottom:522.487836px;}
.y1b9{bottom:527.071588px;}
.y80{bottom:532.182267px;}
.yc3{bottom:533.967171px;}
.yfe{bottom:534.138130px;}
.y15e{bottom:534.223011px;}
.y10d{bottom:534.392775px;}
.y41{bottom:536.854536px;}
.y91{bottom:538.219618px;}
.yb{bottom:538.864499px;}
.y1b8{bottom:538.976669px;}
.y7f{bottom:547.829168px;}
.yc2{bottom:549.614072px;}
.yfd{bottom:549.785030px;}
.ye6{bottom:549.954793px;}
.y10c{bottom:550.124557px;}
.y1b7{bottom:550.967824px;}
.y40{bottom:552.586318px;}
.y90{bottom:553.951400px;}
.ya{bottom:556.864499px;}
.y1b6{bottom:562.958023px;}
.y7e{bottom:563.560950px;}
.yc1{bottom:565.347049px;}
.yfc{bottom:565.516812px;}
.ye5{bottom:565.601694px;}
.y10b{bottom:565.771457px;}
.y56{bottom:568.233218px;}
.y8f{bottom:569.598300px;}
.y1b5{bottom:574.863103px;}
.y7d{bottom:579.207850px;}
.yc0{bottom:580.993949px;}
.yfb{bottom:581.163712px;}
.ye4{bottom:581.333476px;}
.y10a{bottom:581.504434px;}
.y3f{bottom:583.965000px;}
.y8e{bottom:585.331278px;}
.y1b4{bottom:586.853302px;}
.y7c{bottom:594.939632px;}
.ybf{bottom:596.725731px;}
.yfa{bottom:596.896690px;}
.ye3{bottom:596.981571px;}
.y109{bottom:597.151335px;}
.y1b3{bottom:598.759339px;}
.y1b2{bottom:610.749538px;}
.ybe{bottom:612.372632px;}
.yf9{bottom:612.543590px;}
.ye2{bottom:612.713353px;}
.y108{bottom:612.883116px;}
.y8d{bottom:616.709960px;}
.y1b1{bottom:622.739736px;}
.y7b{bottom:626.319510px;}
.ybd{bottom:628.105609px;}
.yf8{bottom:628.275372px;}
.ye1{bottom:628.360254px;}
.y107{bottom:628.530017px;}
.y1b0{bottom:634.645773px;}
.y3e{bottom:643.409287px;}
.ybc{bottom:643.752509px;}
.yf7{bottom:643.922272px;}
.ye0{bottom:644.092036px;}
.y106{bottom:644.262994px;}
.y9{bottom:645.510000px;}
.y1af{bottom:646.635972px;}
.y35{bottom:656.929612px;}
.y3d{bottom:657.780751px;}
.y1ae{bottom:658.541052px;}
.ybb{bottom:659.484291px;}
.yf6{bottom:659.654054px;}
.y15d{bottom:659.740131px;}
.y7a{bottom:659.909894px;}
.y8{bottom:666.771000px;}
.y34{bottom:669.770994px;}
.y1ad{bottom:670.531251px;}
.y3c{bottom:672.152215px;}
.yba{bottom:675.131191px;}
.yf5{bottom:675.302150px;}
.ydf{bottom:675.471913px;}
.y79{bottom:675.641676px;}
.y1ac{bottom:682.437288px;}
.y33{bottom:682.611419px;}
.y3b{bottom:686.523679px;}
.yb9{bottom:690.864169px;}
.yf4{bottom:691.033932px;}
.y15c{bottom:691.118814px;}
.y78{bottom:691.288577px;}
.y1ab{bottom:694.427487px;}
.y32{bottom:695.452800px;}
.y3a{bottom:700.810143px;}
.y1aa{bottom:706.417686px;}
.yb8{bottom:706.511069px;}
.yf3{bottom:706.680832px;}
.y15b{bottom:706.850595px;}
.y77{bottom:707.021554px;}
.y31{bottom:708.293225px;}
.y39{bottom:715.181608px;}
.y1a9{bottom:718.322766px;}
.y30{bottom:721.133650px;}
.yb7{bottom:722.242851px;}
.yf2{bottom:722.412614px;}
.y15a{bottom:722.498691px;}
.y76{bottom:722.753336px;}
.y7{bottom:726.298500px;}
.y38{bottom:729.553072px;}
.y1a8{bottom:730.313921px;}
.y1fe{bottom:730.321725px;}
.y2f{bottom:733.975032px;}
.yb6{bottom:737.889751px;}
.yf1{bottom:738.060710px;}
.y159{bottom:738.230473px;}
.y75{bottom:738.400236px;}
.y1a7{bottom:742.219002px;}
.y1fd{bottom:742.226806px;}
.y37{bottom:743.839536px;}
.y2e{bottom:746.900575px;}
.y3{bottom:752.599495px;}
.yb5{bottom:753.622729px;}
.yf0{bottom:753.792492px;}
.y158{bottom:753.877373px;}
.y74{bottom:754.132018px;}
.y1a6{bottom:754.209200px;}
.y1fc{bottom:754.217961px;}
.y36{bottom:758.211000px;}
.y2d{bottom:759.741000px;}
.y1a5{bottom:766.199399px;}
.y1fb{bottom:766.208160px;}
.yb4{bottom:769.269629px;}
.yef{bottom:769.439392px;}
.y157{bottom:769.609155px;}
.y73{bottom:769.780114px;}
.y1a4{bottom:778.105436px;}
.y1fa{bottom:778.113240px;}
.yb3{bottom:785.001411px;}
.yee{bottom:785.171174px;}
.y156{bottom:785.256056px;}
.y8c{bottom:785.511896px;}
.y2c{bottom:787.549500px;}
.y1a3{bottom:790.095635px;}
.y1f9{bottom:790.104395px;}
.yb2{bottom:800.648311px;}
.yed{bottom:800.818074px;}
.y155{bottom:800.989033px;}
.y72{bottom:801.158796px;}
.y1a2{bottom:802.000715px;}
.y1f8{bottom:802.009476px;}
.y1a1{bottom:813.991870px;}
.y1f7{bottom:813.999674px;}
.yb1{bottom:816.381289px;}
.yec{bottom:816.551052px;}
.y71{bottom:816.890578px;}
.y1a0{bottom:825.896951px;}
.y1f6{bottom:825.904755px;}
.yb0{bottom:832.028189px;}
.yeb{bottom:832.197952px;}
.y154{bottom:832.367715px;}
.y70{bottom:832.537478px;}
.y2b{bottom:836.958000px;}
.y19f{bottom:837.887150px;}
.y1f5{bottom:837.895910px;}
.yaf{bottom:847.759971px;}
.y6f{bottom:848.270456px;}
.y19e{bottom:849.877348px;}
.y1f4{bottom:849.886109px;}
.y29{bottom:861.619500px;}
.y19d{bottom:861.783385px;}
.y1f3{bottom:861.791189px;}
.yae{bottom:863.406871px;}
.yea{bottom:863.576634px;}
.y6e{bottom:863.917356px;}
.y2a{bottom:868.677000px;}
.y150{bottom:872.248500px;}
.y19c{bottom:873.773584px;}
.y1f2{bottom:873.781388px;}
.yad{bottom:879.138653px;}
.y2{bottom:879.369000px;}
.y6d{bottom:879.649138px;}
.y19b{bottom:885.678664px;}
.y1f1{bottom:885.687425px;}
.y8b{bottom:895.296038px;}
.y19a{bottom:897.668863px;}
.y1f0{bottom:897.677624px;}
.y28{bottom:899.122216px;}
.y199{bottom:909.660018px;}
.y1ef{bottom:909.667822px;}
.yac{bottom:910.518531px;}
.y6c{bottom:911.029016px;}
.y198{bottom:921.565099px;}
.y1ee{bottom:921.572903px;}
.y27{bottom:924.973500px;}
.y6b{bottom:926.675916px;}
.y197{bottom:933.555297px;}
.y1ed{bottom:933.564058px;}
.y6a{bottom:942.407698px;}
.y196{bottom:945.461334px;}
.y1ec{bottom:945.469138px;}
.y195{bottom:957.451533px;}
.y1eb{bottom:957.459337px;}
.y69{bottom:958.054598px;}
.y1{bottom:966.726000px;}
.y194{bottom:969.356614px;}
.y1ea{bottom:969.365374px;}
.y68{bottom:973.787576px;}
.y193{bottom:981.346812px;}
.y1e9{bottom:981.355573px;}
.y67{bottom:989.434476px;}
.y192{bottom:993.337967px;}
.y1e8{bottom:993.345772px;}
.y5b{bottom:1003.719000px;}
.y66{bottom:1005.166258px;}
.y191{bottom:1005.243048px;}
.y1e7{bottom:1005.250852px;}
.y190{bottom:1017.233247px;}
.y1e6{bottom:1017.242007px;}
.y65{bottom:1020.813158px;}
.y18f{bottom:1029.138327px;}
.y1e5{bottom:1029.147088px;}
.y64{bottom:1036.546136px;}
.y18e{bottom:1041.129482px;}
.y1e4{bottom:1041.137286px;}
.y5a{bottom:1045.474500px;}
.y63{bottom:1052.193036px;}
.y18d{bottom:1053.119681px;}
.y1e3{bottom:1053.127485px;}
.y18c{bottom:1065.024762px;}
.y1e2{bottom:1065.033522px;}
.y62{bottom:1067.924818px;}
.y18b{bottom:1077.014960px;}
.y1e1{bottom:1077.023721px;}
.y61{bottom:1083.571718px;}
.y59{bottom:1087.312500px;}
.y18a{bottom:1088.920997px;}
.y1e0{bottom:1088.928801px;}
.y60{bottom:1099.303500px;}
.y189{bottom:1100.911196px;}
.y1df{bottom:1100.919000px;}
.y24{bottom:1127.505000px;}
.yab{bottom:1128.626298px;}
.y5e{bottom:1128.630000px;}
.y1de{bottom:1128.633928px;}
.y1ff{bottom:1128.640776px;}
.ye9{bottom:1128.642000px;}
.h15{height:23.521113px;}
.h7{height:32.130000px;}
.hf{height:33.622910px;}
.h14{height:33.623438px;}
.h13{height:34.526473px;}
.h10{height:36.775371px;}
.he{height:37.122363px;}
.hb{height:37.826367px;}
.h11{height:42.029824px;}
.h6{height:45.900000px;}
.h16{height:46.328224px;}
.h3{height:48.195000px;}
.h2{height:55.080000px;}
.hd{height:55.689609px;}
.hc{height:70.925098px;}
.h12{height:73.551270px;}
.h5{height:78.030000px;}
.h4{height:119.055004px;}
.h9{height:1190.250000px;}
.ha{height:1190.550000px;}
.h8{height:1190.551500px;}
.h0{height:1262.833500px;}
.h1{height:1263.000000px;}
.w2{width:637.794021px;}
.w0{width:892.912500px;}
.w3{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x6{left:56.276979px;}
.x12{left:58.846252px;}
.xd{left:63.949500px;}
.x1b{left:65.398230px;}
.xa{left:74.323389px;}
.x1{left:102.045000px;}
.x2{left:106.297500px;}
.x7{left:160.554000px;}
.x8{left:166.932000px;}
.x4{left:203.484001px;}
.xf{left:232.158000px;}
.x1d{left:248.740500px;}
.x13{left:298.573500px;}
.x9{left:302.995500px;}
.xe{left:328.591500px;}
.x5{left:342.746979px;}
.x14{left:343.983616px;}
.x1c{left:379.191000px;}
.x15{left:420.858799px;}
.x11{left:444.311979px;}
.x16{left:448.665693px;}
.x3{left:454.959000px;}
.xb{left:459.888932px;}
.xc{left:477.831221px;}
.x17{left:526.220865px;}
.x18{left:647.655938px;}
.x10{left:660.311979px;}
.x19{left:722.744593px;}
.x1a{left:783.802124px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:7.557206pt;}
.ls0{letter-spacing:0.000000pt;}
.ls1{letter-spacing:16.922845pt;}
.ws3{word-spacing:-21.538128pt;}
.ws7{word-spacing:-12.454610pt;}
.ws9{word-spacing:-11.944523pt;}
.ws4{word-spacing:-11.209008pt;}
.ws6{word-spacing:-10.626800pt;}
.ws2{word-spacing:-10.405632pt;}
.ws1{word-spacing:-10.329120pt;}
.wse{word-spacing:-9.963406pt;}
.ws5{word-spacing:-9.564000pt;}
.wsa{word-spacing:-8.943403pt;}
.ws0{word-spacing:0.000000pt;}
.ws8{word-spacing:1.595275pt;}
.wsb{word-spacing:50.616145pt;}
.wsc{word-spacing:69.760847pt;}
.wsd{word-spacing:74.915975pt;}
._4{margin-left:-15.416526pt;}
._f{margin-left:-4.125674pt;}
._e{margin-left:-3.038440pt;}
._6{margin-left:-1.981661pt;}
._9{margin-left:-1.058429pt;}
._3{width:1.567364pt;}
._1{width:2.955303pt;}
._8{width:3.900117pt;}
._5{width:4.789651pt;}
._2{width:5.896261pt;}
._15{width:6.860150pt;}
._7{width:7.819526pt;}
._b{width:9.351584pt;}
._d{width:10.548489pt;}
._c{width:11.610515pt;}
._a{width:13.810589pt;}
._0{width:14.881584pt;}
._16{width:15.851682pt;}
._11{width:17.555474pt;}
._23{width:18.703168pt;}
._14{width:19.897620pt;}
._13{width:21.436381pt;}
._12{width:22.409796pt;}
._10{width:23.578744pt;}
._24{width:38.321035pt;}
._25{width:39.943280pt;}
._22{width:60.579551pt;}
._18{width:64.116050pt;}
._19{width:84.879381pt;}
._21{width:119.996396pt;}
._1a{width:130.955885pt;}
._1d{width:142.592328pt;}
._1e{width:150.780684pt;}
._1b{width:189.651571pt;}
._20{width:364.813696pt;}
._1f{width:383.863185pt;}
._1c{width:393.479742pt;}
._26{width:1154.636156pt;}
._17{width:1266.321750pt;}
.fse{font-size:23.788267pt;}
.fs9{font-size:34.004800pt;}
.fsd{font-size:34.005333pt;}
.fsa{font-size:37.193067pt;}
.fs4{font-size:37.333333pt;}
.fs8{font-size:37.544000pt;}
.fs5{font-size:38.256000pt;}
.fsb{font-size:42.507200pt;}
.fs3{font-size:53.333333pt;}
.fs1{font-size:56.000000pt;}
.fs7{font-size:56.322133pt;}
.fs0{font-size:64.000000pt;}
.fs6{font-size:71.730667pt;}
.fsc{font-size:74.386667pt;}
.fs2{font-size:90.666667pt;}
.y0{bottom:0.000000pt;}
.y23{bottom:0.000651pt;}
.y6{bottom:31.933340pt;}
.y5f{bottom:42.160000pt;}
.y5{bottom:59.133337pt;}
.y188{bottom:69.697234pt;}
.y13b{bottom:69.697268pt;}
.yde{bottom:69.703272pt;}
.y14f{bottom:73.628121pt;}
.yaa{bottom:75.818117pt;}
.y187{bottom:80.356038pt;}
.y26{bottom:81.066667pt;}
.y13a{bottom:83.682136pt;}
.ydd{bottom:83.687078pt;}
.y129{bottom:84.518093pt;}
.y1dd{bottom:85.948978pt;}
.y4{bottom:86.333337pt;}
.ya7{bottom:87.308754pt;}
.y14e{bottom:87.611927pt;}
.y186{bottom:90.938332pt;}
.y25{bottom:93.893333pt;}
.y1dc{bottom:96.532122pt;}
.y139{bottom:97.590492pt;}
.ydc{bottom:97.595434pt;}
.y128{bottom:98.427512pt;}
.ya9{bottom:98.721200pt;}
.ya6{bottom:98.723315pt;}
.y14d{bottom:101.521346pt;}
.y185{bottom:101.596287pt;}
.ya8{bottom:102.500667pt;}
.y5d{bottom:106.582787pt;}
.y1db{bottom:107.190076pt;}
.ya5{bottom:110.137027pt;}
.y138{bottom:111.574298pt;}
.ydb{bottom:111.579240pt;}
.y184{bottom:112.178580pt;}
.y127{bottom:112.411318pt;}
.y14c{bottom:115.505152pt;}
.y1da{bottom:117.848031pt;}
.y5c{bottom:119.281867pt;}
.ya4{bottom:121.550738pt;}
.y183{bottom:122.837385pt;}
.y22{bottom:123.790666pt;}
.y137{bottom:125.482654pt;}
.yda{bottom:125.488658pt;}
.y126{bottom:126.319674pt;}
.y1d9{bottom:128.431174pt;}
.y14b{bottom:129.413508pt;}
.ya3{bottom:132.965299pt;}
.y182{bottom:133.495339pt;}
.y1d8{bottom:139.089129pt;}
.yd9{bottom:139.472464pt;}
.y125{bottom:140.303480pt;}
.y58{bottom:141.958699pt;}
.y14a{bottom:143.397314pt;}
.y181{bottom:144.077633pt;}
.ya2{bottom:144.379010pt;}
.y1d7{bottom:149.671423pt;}
.y136{bottom:153.375879pt;}
.yd8{bottom:153.380820pt;}
.y124{bottom:154.288349pt;}
.y57{bottom:154.733333pt;}
.y180{bottom:154.736438pt;}
.ya1{bottom:155.793571pt;}
.y149{bottom:157.305670pt;}
.y1d6{bottom:160.329377pt;}
.y17f{bottom:165.318731pt;}
.ya0{bottom:167.207282pt;}
.yd7{bottom:167.364626pt;}
.y123{bottom:168.196705pt;}
.y1d5{bottom:170.912521pt;}
.y148{bottom:171.290538pt;}
.y19{bottom:175.052000pt;}
.y17e{bottom:175.976686pt;}
.y9f{bottom:178.696654pt;}
.yd6{bottom:181.274045pt;}
.y1d4{bottom:181.570475pt;}
.y135{bottom:182.175570pt;}
.y122{bottom:182.180511pt;}
.y147{bottom:185.198894pt;}
.y21{bottom:186.238666pt;}
.y18{bottom:186.252002pt;}
.y17d{bottom:186.634640pt;}
.y9e{bottom:190.111215pt;}
.y1d3{bottom:192.228430pt;}
.yd5{bottom:195.257851pt;}
.y134{bottom:196.083925pt;}
.y121{bottom:196.088867pt;}
.y17c{bottom:197.217784pt;}
.y20{bottom:197.438668pt;}
.y17{bottom:197.452004pt;}
.y55{bottom:198.277099pt;}
.y146{bottom:199.182700pt;}
.y1d2{bottom:202.810724pt;}
.y9d{bottom:207.647491pt;}
.y17b{bottom:207.875739pt;}
.y1f{bottom:208.638670pt;}
.y16{bottom:208.651996pt;}
.yd4{bottom:209.166207pt;}
.y133{bottom:210.067732pt;}
.y120{bottom:210.073735pt;}
.y54{bottom:212.185455pt;}
.y145{bottom:213.091056pt;}
.y1d1{bottom:213.469528pt;}
.y17a{bottom:218.458032pt;}
.y9c{bottom:219.062052pt;}
.yd3{bottom:223.150013pt;}
.y132{bottom:223.976087pt;}
.y11f{bottom:223.982091pt;}
.y1d0{bottom:224.051822pt;}
.y53{bottom:226.170324pt;}
.y144{bottom:227.075925pt;}
.y179{bottom:229.115987pt;}
.y1e{bottom:231.038664pt;}
.y15{bottom:231.052000pt;}
.y1cf{bottom:234.709776pt;}
.y9b{bottom:236.522667pt;}
.yd2{bottom:237.059431pt;}
.y131{bottom:237.960956pt;}
.y11e{bottom:237.965897pt;}
.y178{bottom:239.699131pt;}
.y52{bottom:240.078679pt;}
.y143{bottom:240.984281pt;}
.y1d{bottom:242.238666pt;}
.y14{bottom:242.252002pt;}
.y1ce{bottom:245.367731pt;}
.y177{bottom:250.357085pt;}
.yd1{bottom:251.043238pt;}
.y130{bottom:251.869312pt;}
.y11d{bottom:251.874253pt;}
.y1c{bottom:253.438668pt;}
.y13{bottom:253.451999pt;}
.y9a{bottom:254.060032pt;}
.y51{bottom:254.062486pt;}
.y142{bottom:254.968087pt;}
.y1cd{bottom:255.950875pt;}
.y176{bottom:261.015040pt;}
.yd0{bottom:264.951593pt;}
.y12f{bottom:265.853118pt;}
.y11c{bottom:265.859122pt;}
.y1cc{bottom:266.608829pt;}
.y99{bottom:266.834667pt;}
.y50{bottom:267.970841pt;}
.y141{bottom:268.876443pt;}
.y175{bottom:271.597333pt;}
.y1b{bottom:275.838667pt;}
.y12{bottom:275.852001pt;}
.y1cb{bottom:277.190273pt;}
.ycf{bottom:278.935399pt;}
.y16c{bottom:279.615515pt;}
.y12e{bottom:279.761474pt;}
.y11b{bottom:279.767478pt;}
.y4f{bottom:281.954647pt;}
.y140{bottom:282.861312pt;}
.y1a{bottom:287.038667pt;}
.y11{bottom:287.052000pt;}
.y1ca{bottom:287.849077pt;}
.yce{bottom:292.843755pt;}
.y16b{bottom:293.524933pt;}
.y12d{bottom:293.746343pt;}
.y11a{bottom:293.751284pt;}
.y4e{bottom:295.864066pt;}
.y174{bottom:296.094493pt;}
.y13f{bottom:296.769667pt;}
.y8a{bottom:297.077472pt;}
.y1c9{bottom:298.431371pt;}
.ycd{bottom:306.828624pt;}
.y16a{bottom:307.508739pt;}
.y12c{bottom:307.654699pt;}
.y119{bottom:307.659640pt;}
.y1c8{bottom:309.089326pt;}
.y10{bottom:309.452000pt;}
.y4d{bottom:309.847872pt;}
.y13e{bottom:310.753473pt;}
.y89{bottom:311.061279pt;}
.y1c7{bottom:319.747280pt;}
.ycc{bottom:320.736980pt;}
.y169{bottom:321.492545pt;}
.y12b{bottom:321.638505pt;}
.y118{bottom:321.643446pt;}
.y4c{bottom:323.831678pt;}
.y13d{bottom:324.661829pt;}
.y88{bottom:324.969634pt;}
.y173{bottom:325.877163pt;}
.y1c6{bottom:330.330424pt;}
.ycb{bottom:334.720786pt;}
.y168{bottom:335.400901pt;}
.y117{bottom:335.552865pt;}
.y4b{bottom:337.740034pt;}
.y13c{bottom:338.646698pt;}
.y87{bottom:338.954503pt;}
.y172{bottom:339.785519pt;}
.y1c5{bottom:340.988378pt;}
.yf{bottom:343.809333pt;}
.yca{bottom:348.629142pt;}
.y105{bottom:348.932006pt;}
.y167{bottom:349.385770pt;}
.y12a{bottom:349.530667pt;}
.y116{bottom:349.536671pt;}
.y1c4{bottom:351.570672pt;}
.y4a{bottom:351.724903pt;}
.y86{bottom:352.862859pt;}
.y171{bottom:353.769325pt;}
.y1c3{bottom:362.228627pt;}
.yc9{bottom:362.614011pt;}
.ye{bottom:362.706666pt;}
.y104{bottom:362.915812pt;}
.y166{bottom:363.294126pt;}
.y115{bottom:363.445026pt;}
.y49{bottom:365.633259pt;}
.y98{bottom:366.846665pt;}
.y153{bottom:368.579587pt;}
.y1c2{bottom:372.887431pt;}
.yc8{bottom:376.522367pt;}
.y165{bottom:377.277932pt;}
.y114{bottom:377.428833pt;}
.y152{bottom:379.389365pt;}
.y48{bottom:379.617065pt;}
.y85{bottom:380.755021pt;}
.y170{bottom:381.662550pt;}
.y1c1{bottom:383.469725pt;}
.yc7{bottom:390.506173pt;}
.y103{bottom:390.809036pt;}
.y164{bottom:391.186288pt;}
.y113{bottom:391.338251pt;}
.y151{bottom:392.164000pt;}
.y47{bottom:393.525421pt;}
.y1c0{bottom:394.127679pt;}
.y97{bottom:394.738827pt;}
.yc6{bottom:404.414529pt;}
.y1bf{bottom:404.710823pt;}
.y163{bottom:405.171157pt;}
.y112{bottom:405.322057pt;}
.y46{bottom:407.510289pt;}
.y96{bottom:408.648246pt;}
.y1be{bottom:415.368778pt;}
.y84{bottom:417.190067pt;}
.y16f{bottom:417.416418pt;}
.yc5{bottom:418.399397pt;}
.y102{bottom:419.004062pt;}
.y162{bottom:419.079513pt;}
.y111{bottom:419.230413pt;}
.y45{bottom:421.418645pt;}
.y95{bottom:422.632052pt;}
.y1bd{bottom:426.026732pt;}
.y83{bottom:431.173874pt;}
.y16e{bottom:431.324774pt;}
.ye8{bottom:432.307753pt;}
.y101{bottom:432.912418pt;}
.y161{bottom:433.063319pt;}
.y110{bottom:433.214219pt;}
.y44{bottom:435.402451pt;}
.y94{bottom:436.540408pt;}
.y1bc{bottom:436.609026pt;}
.y82{bottom:445.157680pt;}
.yc4{bottom:446.291559pt;}
.y100{bottom:446.896224pt;}
.y160{bottom:446.971674pt;}
.yd{bottom:446.990669pt;}
.y10f{bottom:447.123638pt;}
.y1bb{bottom:447.267830pt;}
.y43{bottom:449.310807pt;}
.y93{bottom:450.524214pt;}
.y1ba{bottom:457.850124pt;}
.y81{bottom:459.066036pt;}
.y16d{bottom:459.217999pt;}
.ye7{bottom:460.199915pt;}
.yff{bottom:460.804580pt;}
.y15f{bottom:460.956543pt;}
.y10e{bottom:461.107444pt;}
.yc{bottom:462.990669pt;}
.y42{bottom:463.295676pt;}
.y92{bottom:464.433632pt;}
.y1b9{bottom:468.508079pt;}
.y80{bottom:473.050904pt;}
.yc3{bottom:474.637486pt;}
.yfe{bottom:474.789449pt;}
.y15e{bottom:474.864899pt;}
.y10d{bottom:475.015800pt;}
.y41{bottom:477.204032pt;}
.y91{bottom:478.417438pt;}
.yb{bottom:478.990666pt;}
.y1b8{bottom:479.090372pt;}
.y7f{bottom:486.959260pt;}
.yc2{bottom:488.545841pt;}
.yfd{bottom:488.697805pt;}
.ye6{bottom:488.848705pt;}
.y10c{bottom:488.999606pt;}
.y1b7{bottom:489.749177pt;}
.y40{bottom:491.187838pt;}
.y90{bottom:492.401244pt;}
.ya{bottom:494.990666pt;}
.y1b6{bottom:500.407131pt;}
.y7e{bottom:500.943066pt;}
.yc1{bottom:502.530710pt;}
.yfc{bottom:502.681611pt;}
.ye5{bottom:502.757061pt;}
.y10b{bottom:502.907962pt;}
.y56{bottom:505.096194pt;}
.y8f{bottom:506.309600pt;}
.y1b5{bottom:510.989425pt;}
.y7d{bottom:514.851422pt;}
.yc0{bottom:516.439066pt;}
.yfb{bottom:516.589967pt;}
.ye4{bottom:516.740867pt;}
.y10a{bottom:516.892830pt;}
.y3f{bottom:519.080000pt;}
.y8e{bottom:520.294469pt;}
.y1b4{bottom:521.647380pt;}
.y7c{bottom:528.835228pt;}
.ybf{bottom:530.422872pt;}
.yfa{bottom:530.574835pt;}
.ye3{bottom:530.650286pt;}
.y109{bottom:530.801186pt;}
.y1b3{bottom:532.230523pt;}
.y1b2{bottom:542.888478pt;}
.ybe{bottom:544.331228pt;}
.yf9{bottom:544.483191pt;}
.ye2{bottom:544.634092pt;}
.y108{bottom:544.784992pt;}
.y8d{bottom:548.186631pt;}
.y1b1{bottom:553.546432pt;}
.y7b{bottom:556.728453pt;}
.ybd{bottom:558.316097pt;}
.yf8{bottom:558.466997pt;}
.ye1{bottom:558.542448pt;}
.y107{bottom:558.693348pt;}
.y1b0{bottom:564.129576pt;}
.y3e{bottom:571.919366pt;}
.ybc{bottom:572.224453pt;}
.yf7{bottom:572.375353pt;}
.ye0{bottom:572.526254pt;}
.y106{bottom:572.678217pt;}
.y9{bottom:573.786667pt;}
.y1af{bottom:574.787531pt;}
.y35{bottom:583.937433pt;}
.y3d{bottom:584.694001pt;}
.y1ae{bottom:585.369824pt;}
.ybb{bottom:586.208259pt;}
.yf6{bottom:586.359159pt;}
.y15d{bottom:586.435672pt;}
.y7a{bottom:586.586573pt;}
.y8{bottom:592.685334pt;}
.y34{bottom:595.351995pt;}
.y1ad{bottom:596.027779pt;}
.y3c{bottom:597.468636pt;}
.yba{bottom:600.116615pt;}
.yf5{bottom:600.268578pt;}
.ydf{bottom:600.419478pt;}
.y79{bottom:600.570379pt;}
.y1ac{bottom:606.610923pt;}
.y33{bottom:606.765706pt;}
.y3b{bottom:610.243271pt;}
.yb9{bottom:614.101483pt;}
.yf4{bottom:614.252384pt;}
.y15c{bottom:614.327834pt;}
.y78{bottom:614.478735pt;}
.y1ab{bottom:617.268877pt;}
.y32{bottom:618.180267pt;}
.y3a{bottom:622.942350pt;}
.y1aa{bottom:627.926832pt;}
.yb8{bottom:628.009839pt;}
.yf3{bottom:628.160740pt;}
.y15b{bottom:628.311640pt;}
.y77{bottom:628.463604pt;}
.y31{bottom:629.593978pt;}
.y39{bottom:635.716985pt;}
.y1a9{bottom:638.509125pt;}
.y30{bottom:641.007689pt;}
.yb7{bottom:641.993645pt;}
.yf2{bottom:642.144546pt;}
.y15a{bottom:642.221059pt;}
.y76{bottom:642.447410pt;}
.y7{bottom:645.598667pt;}
.y38{bottom:648.491619pt;}
.y1a8{bottom:649.167930pt;}
.y1fe{bottom:649.174867pt;}
.y2f{bottom:652.422250pt;}
.yb6{bottom:655.902001pt;}
.yf1{bottom:656.053964pt;}
.y159{bottom:656.204865pt;}
.y75{bottom:656.355766pt;}
.y1a7{bottom:659.750224pt;}
.y1fd{bottom:659.757161pt;}
.y37{bottom:661.190699pt;}
.y2e{bottom:663.911622pt;}
.y3{bottom:668.977329pt;}
.yb5{bottom:669.886870pt;}
.yf0{bottom:670.037771pt;}
.y158{bottom:670.113221pt;}
.y74{bottom:670.339572pt;}
.y1a6{bottom:670.408178pt;}
.y1fc{bottom:670.415965pt;}
.y36{bottom:673.965333pt;}
.y2d{bottom:675.325333pt;}
.y1a5{bottom:681.066133pt;}
.y1fb{bottom:681.073920pt;}
.yb4{bottom:683.795226pt;}
.yef{bottom:683.946126pt;}
.y157{bottom:684.097027pt;}
.y73{bottom:684.248990pt;}
.y1a4{bottom:691.649276pt;}
.y1fa{bottom:691.656213pt;}
.yb3{bottom:697.779032pt;}
.yee{bottom:697.929933pt;}
.y156{bottom:698.005383pt;}
.y8c{bottom:698.232796pt;}
.y2c{bottom:700.044000pt;}
.y1a3{bottom:702.307231pt;}
.y1f9{bottom:702.315018pt;}
.yb2{bottom:711.687388pt;}
.yed{bottom:711.838288pt;}
.y155{bottom:711.990252pt;}
.y72{bottom:712.141152pt;}
.y1a2{bottom:712.889525pt;}
.y1f8{bottom:712.897312pt;}
.y1a1{bottom:723.548329pt;}
.y1f7{bottom:723.555266pt;}
.yb1{bottom:725.672257pt;}
.yec{bottom:725.823157pt;}
.y71{bottom:726.124958pt;}
.y1a0{bottom:734.130623pt;}
.y1f6{bottom:734.137560pt;}
.yb0{bottom:739.580612pt;}
.yeb{bottom:739.731513pt;}
.y154{bottom:739.882414pt;}
.y70{bottom:740.033314pt;}
.y2b{bottom:743.962667pt;}
.y19f{bottom:744.788577pt;}
.y1f5{bottom:744.796365pt;}
.yaf{bottom:753.564419pt;}
.y6f{bottom:754.018183pt;}
.y19e{bottom:755.446532pt;}
.y1f4{bottom:755.454319pt;}
.y29{bottom:765.884000pt;}
.y19d{bottom:766.029676pt;}
.y1f3{bottom:766.036613pt;}
.yae{bottom:767.472774pt;}
.yea{bottom:767.623675pt;}
.y6e{bottom:767.926539pt;}
.y2a{bottom:772.157333pt;}
.y150{bottom:775.332000pt;}
.y19c{bottom:776.687630pt;}
.y1f2{bottom:776.694567pt;}
.yad{bottom:781.456581pt;}
.y2{bottom:781.661334pt;}
.y6d{bottom:781.910345pt;}
.y19b{bottom:787.269924pt;}
.y1f1{bottom:787.277711pt;}
.y8b{bottom:795.818701pt;}
.y19a{bottom:797.927878pt;}
.y1f0{bottom:797.935665pt;}
.y28{bottom:799.219748pt;}
.y199{bottom:808.586683pt;}
.y1ef{bottom:808.593620pt;}
.yac{bottom:809.349805pt;}
.y6c{bottom:809.803570pt;}
.y198{bottom:819.168977pt;}
.y1ee{bottom:819.175914pt;}
.y27{bottom:822.198667pt;}
.y6b{bottom:823.711925pt;}
.y197{bottom:829.826931pt;}
.y1ed{bottom:829.834718pt;}
.y6a{bottom:837.695732pt;}
.y196{bottom:840.410075pt;}
.y1ec{bottom:840.417012pt;}
.y195{bottom:851.068029pt;}
.y1eb{bottom:851.074966pt;}
.y69{bottom:851.604087pt;}
.y1{bottom:859.312000pt;}
.y194{bottom:861.650323pt;}
.y1ea{bottom:861.658110pt;}
.y68{bottom:865.588956pt;}
.y193{bottom:872.308278pt;}
.y1e9{bottom:872.316065pt;}
.y67{bottom:879.497312pt;}
.y192{bottom:882.967082pt;}
.y1e8{bottom:882.974019pt;}
.y5b{bottom:892.194667pt;}
.y66{bottom:893.481118pt;}
.y191{bottom:893.549376pt;}
.y1e7{bottom:893.556313pt;}
.y190{bottom:904.207330pt;}
.y1e6{bottom:904.215118pt;}
.y65{bottom:907.389474pt;}
.y18f{bottom:914.789624pt;}
.y1e5{bottom:914.797411pt;}
.y64{bottom:921.374343pt;}
.y18e{bottom:925.448429pt;}
.y1e4{bottom:925.455366pt;}
.y5a{bottom:929.310667pt;}
.y63{bottom:935.282699pt;}
.y18d{bottom:936.106383pt;}
.y1e3{bottom:936.113320pt;}
.y18c{bottom:946.688677pt;}
.y1e2{bottom:946.696464pt;}
.y62{bottom:949.266505pt;}
.y18b{bottom:957.346631pt;}
.y1e1{bottom:957.354418pt;}
.y61{bottom:963.174861pt;}
.y59{bottom:966.500000pt;}
.y18a{bottom:967.929775pt;}
.y1e0{bottom:967.936712pt;}
.y60{bottom:977.158667pt;}
.y189{bottom:978.587730pt;}
.y1df{bottom:978.594667pt;}
.y24{bottom:1002.226667pt;}
.yab{bottom:1003.223376pt;}
.y5e{bottom:1003.226667pt;}
.y1de{bottom:1003.230158pt;}
.y1ff{bottom:1003.236245pt;}
.ye9{bottom:1003.237333pt;}
.h15{height:20.907656pt;}
.h7{height:28.560000pt;}
.hf{height:29.887031pt;}
.h14{height:29.887500pt;}
.h13{height:30.690198pt;}
.h10{height:32.689219pt;}
.he{height:32.997656pt;}
.hb{height:33.623437pt;}
.h11{height:37.359844pt;}
.h6{height:40.800000pt;}
.h16{height:41.180643pt;}
.h3{height:42.840000pt;}
.h2{height:48.960000pt;}
.hd{height:49.501875pt;}
.hc{height:63.044531pt;}
.h12{height:65.378906pt;}
.h5{height:69.360000pt;}
.h4{height:105.826671pt;}
.h9{height:1058.000000pt;}
.ha{height:1058.266667pt;}
.h8{height:1058.268000pt;}
.h0{height:1122.518667pt;}
.h1{height:1122.666667pt;}
.w2{width:566.928019pt;}
.w0{width:793.700000pt;}
.w3{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x6{left:50.023981pt;}
.x12{left:52.307779pt;}
.xd{left:56.844000pt;}
.x1b{left:58.131760pt;}
.xa{left:66.065235pt;}
.x1{left:90.706667pt;}
.x2{left:94.486667pt;}
.x7{left:142.714667pt;}
.x8{left:148.384000pt;}
.x4{left:180.874667pt;}
.xf{left:206.362667pt;}
.x1d{left:221.102667pt;}
.x13{left:265.398667pt;}
.x9{left:269.329333pt;}
.xe{left:292.081333pt;}
.x5{left:304.663981pt;}
.x14{left:305.763214pt;}
.x1c{left:337.058667pt;}
.x15{left:374.096710pt;}
.x11{left:394.943981pt;}
.x16{left:398.813949pt;}
.x3{left:404.408000pt;}
.xb{left:408.790162pt;}
.xc{left:424.738863pt;}
.x17{left:467.751880pt;}
.x18{left:575.694167pt;}
.x10{left:586.943981pt;}
.x19{left:642.439638pt;}
.x1a{left:696.713000pt;}
}




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