
    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_56d921495178db0d1b386dab.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_220831644160043ecf6615c6.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_29d716445a9714b51ec2cc66.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_9939c0c0b1768d4921a56b51.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.932129;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_6fd8d812f4991b19a0e71812.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_227198b3d04c3a26acf3b983.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.726562;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_58b2764d69e2ac75833d6bf0.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.793457;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_5fd6ec555c3fb20e9a6884a9.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.965820;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_b38edfc0c4f6700271587802.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.939941;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_d641410fa710057af290948e.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.973145;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_db942fbe69ea386b7fcb929b.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.973145;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_a17a6417e7317147fd1e6d5b.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.973145;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_20a738046bc83b418159b38c.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.962402;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:ffe;src:url('chunks/assets/font_7bc27c86a71d1ebb869ecddb.woff2')format("woff");}.ffe{font-family:ffe;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:fff;src:url('chunks/assets/font_ec2e20d67229f70e1c9bc978.woff2')format("woff");}.fff{font-family:fff;line-height:0.916992;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:ff10;src:url('chunks/assets/font_0ac301edf5f9b9f55a681617.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.957520;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:ff11;src:url('chunks/assets/font_843b6db02652b98e78309a80.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.722656;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff12;src:url('chunks/assets/font_a6a9e9042f89350f9727f519.woff2')format("woff");}.ff12{font-family:ff12;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;}
.m3{transform:matrix(0.249824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249824,0.000000,0.000000,0.250000,0,0);}
.m6{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);}
.m7{transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);}
.m8{transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);}
.m0{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);}
.m4{transform:matrix(0.249853,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249853,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249853,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);}
.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);}
.m1{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);}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:2.879999px;}
.ls3{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.010553px;}
.ls2{letter-spacing:0.073080px;}
.ls4{letter-spacing:0.233340px;}
.ls1{letter-spacing:0.953760px;}
.ls5{letter-spacing:1.782179px;}
.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;}
}
.ws1{word-spacing:-22.407831px;}
.ws0{word-spacing:-17.999993px;}
.ws3{word-spacing:-15.179034px;}
.ws5{word-spacing:-13.715995px;}
.ws2{word-spacing:-13.013995px;}
.ws4{word-spacing:0.000000px;}
._3{margin-left:-670.683089px;}
._2{margin-left:-607.178273px;}
._b{margin-left:-469.513486px;}
._6{margin-left:-334.821628px;}
._8{margin-left:-87.372063px;}
._9{margin-left:-69.371752px;}
._7{margin-left:-52.559242px;}
._a{margin-left:-34.559225px;}
._1{margin-left:-25.559162px;}
._5{margin-left:-16.559201px;}
._33{margin-left:-2.315794px;}
._0{margin-left:-1.187579px;}
._4{width:1.472618px;}
._d{width:3.159673px;}
._c{width:4.286562px;}
._15{width:5.479396px;}
._11{width:6.910687px;}
._12{width:7.928233px;}
._16{width:9.637346px;}
._13{width:10.698925px;}
._14{width:11.706333px;}
._1a{width:14.676804px;}
._1b{width:15.702494px;}
._19{width:17.504024px;}
._2d{width:18.556625px;}
._f{width:20.517673px;}
._10{width:21.716458px;}
._17{width:23.275072px;}
._1c{width:24.322271px;}
._28{width:25.847702px;}
._1e{width:27.477647px;}
._1f{width:28.554881px;}
._20{width:29.946065px;}
._2b{width:31.866460px;}
._3a{width:33.524478px;}
._2c{width:35.170935px;}
._2f{width:36.928177px;}
._27{width:38.216797px;}
._26{width:39.646807px;}
._23{width:40.727492px;}
._24{width:42.062113px;}
._30{width:43.118733px;}
._31{width:44.502339px;}
._36{width:46.652705px;}
._37{width:47.738071px;}
._18{width:48.858597px;}
._2e{width:49.861044px;}
._35{width:50.921563px;}
._25{width:52.538625px;}
._3c{width:54.546829px;}
._29{width:56.130223px;}
._2a{width:57.232556px;}
._38{width:58.515926px;}
._39{width:59.708384px;}
._21{width:61.996135px;}
._22{width:63.266842px;}
._1d{width:66.913931px;}
._34{width:70.367982px;}
._32{width:71.809806px;}
._3d{width:78.560046px;}
._3b{width:83.718835px;}
._e{width:372.005369px;}
.fc5{color:transparent;}
.fc4{color:rgb(0,32,96);}
.fc3{color:rgb(0,0,128);}
.fc2{color:rgb(0,0,255);}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fsa{font-size:9.359996px;}
.fs3{font-size:12.239995px;}
.fs9{font-size:23.759990px;}
.fs6{font-size:38.879984px;}
.fsd{font-size:41.759983px;}
.fs5{font-size:48.239981px;}
.fsc{font-size:51.119980px;}
.fs8{font-size:53.999978px;}
.fs7{font-size:59.759976px;}
.fs0{font-size:71.999971px;}
.fsb{font-size:74.879970px;}
.fs1{font-size:84.239966px;}
.fs4{font-size:95.759962px;}
.fs2{font-size:107.999957px;}
.y46{bottom:-15.661023px;}
.y0{bottom:0.000000px;}
.y8{bottom:2.878921px;}
.y1c{bottom:3.059079px;}
.y11c{bottom:3.059101px;}
.y120{bottom:3.059107px;}
.y122{bottom:3.059120px;}
.y24{bottom:3.059123px;}
.yb6{bottom:3.059132px;}
.y125{bottom:3.059133px;}
.yb8{bottom:3.059141px;}
.y128{bottom:3.059145px;}
.y12b{bottom:3.059158px;}
.yd7{bottom:3.059183px;}
.yd9{bottom:3.059192px;}
.yee{bottom:3.059194px;}
.yf0{bottom:3.059204px;}
.y103{bottom:3.059212px;}
.y13{bottom:3.239032px;}
.y21{bottom:3.419111px;}
.y41{bottom:3.778940px;}
.ya{bottom:4.138945px;}
.y1e{bottom:4.319079px;}
.y4{bottom:4.320028px;}
.y15{bottom:4.859040px;}
.y19{bottom:4.859058px;}
.y78{bottom:58.440277px;}
.y6{bottom:58.620277px;}
.y76{bottom:74.820240px;}
.y3{bottom:75.000240px;}
.y77{bottom:78.780268px;}
.y5{bottom:78.960268px;}
.y75{bottom:79.139968px;}
.y2{bottom:79.319968px;}
.ya6{bottom:117.480253px;}
.ycf{bottom:118.920252px;}
.y3e{bottom:122.879951px;}
.y13d{bottom:128.640249px;}
.y111{bottom:129.360248px;}
.yea{bottom:129.540248px;}
.y73{bottom:130.620248px;}
.ya5{bottom:140.700244px;}
.yce{bottom:141.780243px;}
.y3d{bottom:145.919942px;}
.y13c{bottom:152.039939px;}
.y110{bottom:152.399939px;}
.ye9{bottom:152.579939px;}
.y72{bottom:153.479939px;}
.yff{bottom:153.659939px;}
.ya4{bottom:164.099934px;}
.ycd{bottom:164.819934px;}
.y3c{bottom:168.959932px;}
.y10f{bottom:175.439930px;}
.ye8{bottom:175.619930px;}
.y71{bottom:176.519929px;}
.yfe{bottom:176.699929px;}
.ya3{bottom:187.499925px;}
.ycc{bottom:187.859925px;}
.y3b{bottom:191.999923px;}
.y10e{bottom:198.479921px;}
.ye7{bottom:198.659921px;}
.y70{bottom:199.559920px;}
.yfd{bottom:199.739920px;}
.ya2{bottom:210.719916px;}
.ycb{bottom:210.899916px;}
.y3a{bottom:214.859914px;}
.y10d{bottom:221.339911px;}
.ye6{bottom:221.699911px;}
.y13b{bottom:222.059911px;}
.y6f{bottom:222.599911px;}
.yfc{bottom:222.779911px;}
.ya1{bottom:233.579907px;}
.yca{bottom:233.939906px;}
.y39{bottom:237.899905px;}
.yfb{bottom:243.119903px;}
.y10c{bottom:244.379902px;}
.ye5{bottom:244.559902px;}
.y13a{bottom:245.279902px;}
.y6e{bottom:245.639902px;}
.ya0{bottom:256.079898px;}
.yc9{bottom:256.979897px;}
.y38{bottom:260.939896px;}
.yfa{bottom:263.639895px;}
.y10b{bottom:267.419893px;}
.ye4{bottom:267.599893px;}
.y6d{bottom:268.679893px;}
.y9f{bottom:279.479888px;}
.yc8{bottom:279.839888px;}
.y37{bottom:283.979886px;}
.yf9{bottom:286.679885px;}
.y10a{bottom:290.459884px;}
.ye3{bottom:290.639884px;}
.y6c{bottom:291.539883px;}
.y139{bottom:292.079883px;}
.y9e{bottom:302.699879px;}
.yc7{bottom:302.879879px;}
.y36{bottom:307.019877px;}
.yf8{bottom:309.539876px;}
.y109{bottom:313.499875px;}
.ye2{bottom:313.679875px;}
.y6b{bottom:314.579874px;}
.y138{bottom:315.299874px;}
.yc6{bottom:325.919870px;}
.y9d{bottom:326.099870px;}
.y35{bottom:330.059868px;}
.yf7{bottom:332.579867px;}
.y108{bottom:336.539865px;}
.ye1{bottom:336.719865px;}
.y6a{bottom:337.619865px;}
.y137{bottom:338.699865px;}
.yc5{bottom:348.959860px;}
.y9c{bottom:349.499860px;}
.y34{bottom:352.919859px;}
.yf6{bottom:355.619858px;}
.y107{bottom:359.399856px;}
.ye0{bottom:359.759856px;}
.y69{bottom:360.659856px;}
.y136{bottom:361.919855px;}
.yc4{bottom:371.999851px;}
.y9b{bottom:372.719851px;}
.y33{bottom:375.959850px;}
.yf5{bottom:378.659849px;}
.y106{bottom:382.439847px;}
.ydf{bottom:382.619847px;}
.y68{bottom:383.699847px;}
.y135{bottom:385.319846px;}
.y32{bottom:392.159843px;}
.yc3{bottom:395.039842px;}
.y31{bottom:395.939842px;}
.y9a{bottom:396.119842px;}
.yf4{bottom:401.699839px;}
.y105{bottom:405.479838px;}
.yde{bottom:405.659838px;}
.y67{bottom:406.739837px;}
.y134{bottom:408.719837px;}
.y30{bottom:416.459833px;}
.yc2{bottom:417.899833px;}
.y99{bottom:419.339832px;}
.yf3{bottom:424.739830px;}
.y104{bottom:425.999830px;}
.ydd{bottom:428.699829px;}
.y66{bottom:429.599828px;}
.y133{bottom:431.939827px;}
.y2f{bottom:439.499824px;}
.yc1{bottom:440.939824px;}
.y98{bottom:442.739823px;}
.yf2{bottom:446.339821px;}
.ydc{bottom:451.739819px;}
.y65{bottom:452.639819px;}
.y132{bottom:455.339818px;}
.y2e{bottom:462.539815px;}
.yc0{bottom:463.979814px;}
.y97{bottom:466.139814px;}
.y102{bottom:466.320600px;}
.yf1{bottom:468.119813px;}
.ydb{bottom:474.779810px;}
.y64{bottom:475.679810px;}
.y131{bottom:478.559809px;}
.y171{bottom:481.799807px;}
.y2d{bottom:485.399806px;}
.ybf{bottom:487.019805px;}
.yef{bottom:488.100600px;}
.y96{bottom:489.359804px;}
.y101{bottom:489.360600px;}
.yda{bottom:497.639801px;}
.y63{bottom:498.719801px;}
.y130{bottom:501.959799px;}
.y170{bottom:504.839798px;}
.y158{bottom:507.539797px;}
.y2c{bottom:508.619797px;}
.ybe{bottom:510.059796px;}
.yed{bottom:511.140600px;}
.y95{bottom:512.759795px;}
.yd8{bottom:517.620600px;}
.y62{bottom:521.759791px;}
.y12f{bottom:525.359790px;}
.y16f{bottom:529.139788px;}
.y157{bottom:530.219788px;}
.y2b{bottom:531.839787px;}
.ybd{bottom:533.099787px;}
.y94{bottom:535.979786px;}
.yd6{bottom:540.660600px;}
.y61{bottom:544.799782px;}
.y12e{bottom:548.579781px;}
.y156{bottom:552.899779px;}
.y16e{bottom:553.799778px;}
.y2a{bottom:554.879778px;}
.ybc{bottom:555.959778px;}
.y93{bottom:559.379776px;}
.y60{bottom:567.659773px;}
.y12d{bottom:571.799771px;}
.y155{bottom:575.579770px;}
.y29{bottom:577.739769px;}
.y16d{bottom:578.279769px;}
.ybb{bottom:578.999768px;}
.y92{bottom:582.779767px;}
.y12c{bottom:589.259764px;}
.y5f{bottom:590.699764px;}
.y154{bottom:598.259761px;}
.y28{bottom:600.779760px;}
.y12a{bottom:601.500600px;}
.yba{bottom:602.039759px;}
.y16c{bottom:602.759759px;}
.y91{bottom:605.999758px;}
.y5e{bottom:613.739755px;}
.y129{bottom:620.939752px;}
.y27{bottom:623.819750px;}
.yb9{bottom:625.079750px;}
.y16b{bottom:627.419749px;}
.y90{bottom:629.399748px;}
.y127{bottom:633.360600px;}
.y5d{bottom:636.779745px;}
.y100{bottom:637.139745px;}
.y153{bottom:643.619743px;}
.yb7{bottom:645.060600px;}
.y26{bottom:646.859741px;}
.y16a{bottom:651.899739px;}
.y8f{bottom:652.619739px;}
.y126{bottom:652.799739px;}
.yec{bottom:659.639736px;}
.y5c{bottom:659.819736px;}
.y124{bottom:665.040600px;}
.y152{bottom:666.299733px;}
.yb5{bottom:667.920600px;}
.y25{bottom:669.899732px;}
.y8e{bottom:676.019730px;}
.y169{bottom:676.379729px;}
.yeb{bottom:682.499727px;}
.y5b{bottom:682.679727px;}
.y123{bottom:684.659726px;}
.y151{bottom:688.979724px;}
.y23{bottom:689.880600px;}
.y121{bottom:696.900600px;}
.y8d{bottom:699.419720px;}
.y168{bottom:701.039720px;}
.yd5{bottom:705.539718px;}
.y5a{bottom:705.719718px;}
.y150{bottom:711.659715px;}
.y11e{bottom:717.599713px;}
.y20{bottom:717.960600px;}
.y22{bottom:721.379711px;}
.y8c{bottom:722.639711px;}
.y167{bottom:725.519710px;}
.yd4{bottom:728.579709px;}
.y59{bottom:728.759708px;}
.y11f{bottom:729.840600px;}
.y11d{bottom:732.899707px;}
.y14f{bottom:734.339706px;}
.y11b{bottom:745.140600px;}
.y8b{bottom:746.039702px;}
.y166{bottom:749.999700px;}
.yd3{bottom:751.619699px;}
.y58{bottom:751.799699px;}
.y14e{bottom:757.019697px;}
.y1f{bottom:758.999696px;}
.y8a{bottom:769.259692px;}
.y11a{bottom:773.759690px;}
.yd2{bottom:774.659690px;}
.y57{bottom:774.839690px;}
.y14d{bottom:779.699688px;}
.y89{bottom:792.659683px;}
.y119{bottom:796.619681px;}
.yd1{bottom:797.699681px;}
.y56{bottom:797.879681px;}
.y1d{bottom:798.600600px;}
.y165{bottom:799.139680px;}
.y1b{bottom:799.860600px;}
.y14c{bottom:802.379679px;}
.y88{bottom:816.059674px;}
.y1a{bottom:819.119672px;}
.y118{bottom:819.659672px;}
.yd0{bottom:820.559672px;}
.y55{bottom:820.739672px;}
.y164{bottom:823.619671px;}
.y14b{bottom:825.059670px;}
.y87{bottom:839.279664px;}
.y117{bottom:842.699663px;}
.yb4{bottom:843.599663px;}
.y54{bottom:843.779662px;}
.y14a{bottom:847.739661px;}
.y163{bottom:848.279661px;}
.y18{bottom:850.080600px;}
.y86{bottom:862.679655px;}
.y116{bottom:865.739654px;}
.yb3{bottom:866.639653px;}
.y53{bottom:866.819653px;}
.y149{bottom:870.419652px;}
.y17{bottom:872.759651px;}
.y85{bottom:885.899646px;}
.y115{bottom:888.779644px;}
.yb2{bottom:889.679644px;}
.y52{bottom:889.859644px;}
.y148{bottom:893.099643px;}
.y14{bottom:895.440600px;}
.y162{bottom:897.419641px;}
.y16{bottom:905.519638px;}
.y84{bottom:909.299636px;}
.y114{bottom:911.999635px;}
.yb1{bottom:912.719635px;}
.y51{bottom:912.899635px;}
.y12{bottom:915.780600px;}
.y147{bottom:915.959634px;}
.y161{bottom:921.899631px;}
.y83{bottom:932.699627px;}
.y113{bottom:935.219626px;}
.yb0{bottom:935.759626px;}
.y50{bottom:935.939626px;}
.y146{bottom:938.639625px;}
.y160{bottom:946.379621px;}
.y11{bottom:949.259620px;}
.y82{bottom:955.919618px;}
.y112{bottom:958.439617px;}
.yaf{bottom:958.619617px;}
.y4f{bottom:958.799616px;}
.y145{bottom:961.319615px;}
.y15f{bottom:971.039612px;}
.y81{bottom:979.319608px;}
.yae{bottom:981.659607px;}
.y4e{bottom:981.839607px;}
.y144{bottom:983.999606px;}
.y10{bottom:990.119604px;}
.y15e{bottom:995.519602px;}
.y80{bottom:1002.539599px;}
.yad{bottom:1004.699598px;}
.y4d{bottom:1004.879598px;}
.y143{bottom:1006.679597px;}
.yf{bottom:1013.519595px;}
.y15d{bottom:1019.999592px;}
.y7f{bottom:1025.939590px;}
.yac{bottom:1027.739589px;}
.y4c{bottom:1027.919589px;}
.y142{bottom:1029.359588px;}
.ye{bottom:1029.899588px;}
.yd{bottom:1030.259588px;}
.y15c{bottom:1044.659582px;}
.y7e{bottom:1049.339580px;}
.yab{bottom:1050.779580px;}
.y4b{bottom:1050.959580px;}
.y141{bottom:1052.039579px;}
.y15b{bottom:1069.139572px;}
.y7d{bottom:1072.559571px;}
.y45{bottom:1073.280600px;}
.yaa{bottom:1073.819570px;}
.y4a{bottom:1073.999570px;}
.y140{bottom:1074.719570px;}
.y44{bottom:1082.279567px;}
.y15a{bottom:1093.619563px;}
.y7c{bottom:1095.959562px;}
.ya9{bottom:1096.679561px;}
.y49{bottom:1096.859561px;}
.y13f{bottom:1097.399561px;}
.y43{bottom:1103.519559px;}
.y159{bottom:1118.279553px;}
.y7b{bottom:1119.179552px;}
.ya8{bottom:1119.719552px;}
.y48{bottom:1119.899552px;}
.y13e{bottom:1120.079552px;}
.y42{bottom:1124.939550px;}
.yc{bottom:1127.099549px;}
.yb{bottom:1127.459549px;}
.y9{bottom:1134.300600px;}
.y7a{bottom:1142.579543px;}
.ya7{bottom:1142.759543px;}
.y47{bottom:1142.939543px;}
.y40{bottom:1145.280600px;}
.y3f{bottom:1149.059540px;}
.y74{bottom:1192.619523px;}
.y1{bottom:1192.799523px;}
.y79{bottom:1195.680600px;}
.y7{bottom:1195.860600px;}
.h23{height:2.880000px;}
.hb{height:8.169958px;}
.hd{height:13.500000px;}
.h16{height:15.120000px;}
.h29{height:15.300000px;}
.h26{height:15.480000px;}
.h1d{height:15.859330px;}
.h18{height:16.380000px;}
.h1b{height:17.100000px;}
.hf{height:20.160000px;}
.h13{height:20.340000px;}
.h2{height:20.520000px;}
.h7{height:20.700000px;}
.h4{height:20.880000px;}
.h21{height:21.780000px;}
.h1e{height:25.913662px;}
.h11{height:25.951630px;}
.h28{height:31.585065px;}
.he{height:32.199245px;}
.h1a{height:33.588971px;}
.h27{height:36.486196px;}
.h12{height:36.886626px;}
.h25{height:38.664477px;}
.h15{height:40.005336px;}
.h17{height:40.842757px;}
.h22{height:41.290999px;}
.h1f{height:43.185920px;}
.h1c{height:45.199318px;}
.h8{height:47.988262px;}
.h10{height:48.058575px;}
.h14{height:48.199199px;}
.h24{height:49.907793px;}
.h19{height:50.132792px;}
.ha{height:54.457009px;}
.h20{height:55.054665px;}
.h5{height:56.228532px;}
.hc{height:63.917904px;}
.h1{height:70.664034px;}
.h3{height:72.562471px;}
.h9{height:78.468719px;}
.h6{height:84.898091px;}
.h0{height:1263.000000px;}
.w39{width:0.360000px;}
.w32{width:0.720000px;}
.w45{width:0.900000px;}
.w2a{width:2.700000px;}
.w2c{width:3.240000px;}
.w20{width:4.320000px;}
.wd{width:4.500000px;}
.w28{width:4.680000px;}
.w22{width:5.040000px;}
.w1e{width:5.400000px;}
.w1a{width:6.300000px;}
.w1{width:6.480000px;}
.wf{width:6.840000px;}
.w12{width:7.740000px;}
.w7{width:8.280000px;}
.w18{width:9.900000px;}
.w17{width:10.620000px;}
.w5{width:11.160000px;}
.w6{width:11.340000px;}
.w3c{width:12.060000px;}
.wb{width:12.240000px;}
.w9{width:12.420000px;}
.w2b{width:14.040000px;}
.w3a{width:15.660000px;}
.w33{width:15.840000px;}
.w3{width:16.020000px;}
.w36{width:21.780000px;}
.w3e{width:22.320000px;}
.w30{width:22.500000px;}
.w2f{width:22.680000px;}
.w42{width:23.040000px;}
.w27{width:24.840000px;}
.w3f{width:27.360000px;}
.w37{width:27.720000px;}
.w43{width:28.800000px;}
.w35{width:29.340000px;}
.w2e{width:29.700000px;}
.w3d{width:31.680000px;}
.w4{width:33.480000px;}
.w26{width:34.200000px;}
.w29{width:35.820000px;}
.w25{width:37.440000px;}
.w44{width:39.420000px;}
.w31{width:39.600000px;}
.w38{width:40.320000px;}
.w40{width:40.500000px;}
.w19{width:43.560000px;}
.w10{width:44.460000px;}
.w1d{width:44.640000px;}
.w13{width:65.700000px;}
.w24{width:66.240000px;}
.w3b{width:68.760000px;}
.we{width:71.100000px;}
.w2d{width:75.600000px;}
.wc{width:77.940000px;}
.w34{width:80.640000px;}
.w41{width:80.820000px;}
.w11{width:84.060000px;}
.w8{width:108.900000px;}
.w15{width:111.960000px;}
.w2{width:119.700000px;}
.w16{width:165.420000px;}
.w1f{width:274.320000px;}
.w1b{width:274.500000px;}
.w23{width:274.680000px;}
.w21{width:276.480000px;}
.wa{width:295.200000px;}
.w1c{width:324.000000px;}
.w14{width:398.160000px;}
.w0{width:892.500000px;}
.x0{left:0.000000px;}
.x1{left:107.999957px;}
.x1e{left:109.259956px;}
.x2c{left:116.459953px;}
.x5{left:120.240000px;}
.x2{left:137.699962px;}
.x35{left:152.820000px;}
.x3{left:155.700000px;}
.x36{left:157.860000px;}
.x4{left:171.899931px;}
.x29{left:174.599930px;}
.xa{left:185.219926px;}
.x22{left:187.200000px;}
.x23{left:191.700000px;}
.x1f{left:218.159913px;}
.x20{left:222.840000px;}
.x6{left:239.940000px;}
.xb{left:259.740316px;}
.x24{left:262.800000px;}
.x25{left:269.640000px;}
.x26{left:314.100000px;}
.x27{left:320.940000px;}
.x2e{left:342.539863px;}
.x21{left:403.920000px;}
.xc{left:427.680106px;}
.xd{left:432.180102px;}
.x30{left:435.959826px;}
.x2d{left:462.600512px;}
.x3f{left:476.820000px;}
.x46{left:478.620000px;}
.x40{left:481.860000px;}
.x47{left:483.660000px;}
.x41{left:485.100000px;}
.x48{left:486.900000px;}
.x33{left:506.340000px;}
.x2a{left:507.420000px;}
.x37{left:510.300000px;}
.x34{left:512.280000px;}
.xe{left:516.060050px;}
.xf{left:529.380042px;}
.x10{left:542.700033px;}
.x32{left:556.199778px;}
.x11{left:564.659960px;}
.x12{left:569.159957px;}
.x38{left:578.880000px;}
.x4c{left:579.960000px;}
.x39{left:581.399767px;}
.x13{left:582.479948px;}
.x31{left:589.679764px;}
.x14{left:595.619941px;}
.x15{left:608.939932px;}
.x42{left:610.740000px;}
.x16{left:613.439928px;}
.x2b{left:619.380000px;}
.x3b{left:623.159751px;}
.x17{left:631.079858px;}
.x18{left:635.399856px;}
.x3a{left:640.800000px;}
.x3c{left:644.219818px;}
.x49{left:645.300000px;}
.x19{left:648.719847px;}
.x1a{left:653.039845px;}
.x1b{left:657.539841px;}
.x1c{left:666.359733px;}
.x43{left:667.440000px;}
.x7{left:697.320000px;}
.x4a{left:705.240000px;}
.x3d{left:708.300000px;}
.x8{left:730.800000px;}
.x4b{left:732.960000px;}
.x9{left:741.960000px;}
.x44{left:746.460000px;}
.x3e{left:748.260000px;}
.x2f{left:779.580000px;}
.x28{left:781.559687px;}
.x1d{left:783.539686px;}
.x45{left:786.060000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:2.559999pt;}
.ls3{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.009381pt;}
.ls2{letter-spacing:0.064960pt;}
.ls4{letter-spacing:0.207413pt;}
.ls1{letter-spacing:0.847786pt;}
.ls5{letter-spacing:1.584159pt;}
.ws1{word-spacing:-19.918072pt;}
.ws0{word-spacing:-15.999994pt;}
.ws3{word-spacing:-13.492475pt;}
.ws5{word-spacing:-12.191995pt;}
.ws2{word-spacing:-11.567995pt;}
.ws4{word-spacing:0.000000pt;}
._3{margin-left:-596.162746pt;}
._2{margin-left:-539.714020pt;}
._b{margin-left:-417.345321pt;}
._6{margin-left:-297.619225pt;}
._8{margin-left:-77.664056pt;}
._9{margin-left:-61.663779pt;}
._7{margin-left:-46.719326pt;}
._a{margin-left:-30.719311pt;}
._1{margin-left:-22.719255pt;}
._5{margin-left:-14.719290pt;}
._33{margin-left:-2.058483pt;}
._0{margin-left:-1.055625pt;}
._4{width:1.308994pt;}
._d{width:2.808598pt;}
._c{width:3.810277pt;}
._15{width:4.870574pt;}
._11{width:6.142833pt;}
._12{width:7.047318pt;}
._16{width:8.566530pt;}
._13{width:9.510155pt;}
._14{width:10.405630pt;}
._1a{width:13.046048pt;}
._1b{width:13.957772pt;}
._19{width:15.559132pt;}
._2d{width:16.494778pt;}
._f{width:18.237932pt;}
._10{width:19.303518pt;}
._17{width:20.688953pt;}
._1c{width:21.619797pt;}
._28{width:22.975735pt;}
._1e{width:24.424575pt;}
._1f{width:25.382117pt;}
._20{width:26.618724pt;}
._2b{width:28.325742pt;}
._3a{width:29.799536pt;}
._2c{width:31.263054pt;}
._2f{width:32.825046pt;}
._27{width:33.970487pt;}
._26{width:35.241606pt;}
._23{width:36.202215pt;}
._24{width:37.388545pt;}
._30{width:38.327763pt;}
._31{width:39.557635pt;}
._36{width:41.469072pt;}
._37{width:42.433840pt;}
._18{width:43.429864pt;}
._2e{width:44.320928pt;}
._35{width:45.263612pt;}
._25{width:46.701000pt;}
._3c{width:48.486070pt;}
._29{width:49.893531pt;}
._2a{width:50.873383pt;}
._38{width:52.014157pt;}
._39{width:53.074119pt;}
._21{width:55.107676pt;}
._22{width:56.237193pt;}
._1d{width:59.479049pt;}
._34{width:62.549318pt;}
._32{width:63.830939pt;}
._3d{width:69.831152pt;}
._3b{width:74.416742pt;}
._e{width:330.671439pt;}
.fsa{font-size:8.319997pt;}
.fs3{font-size:10.879996pt;}
.fs9{font-size:21.119992pt;}
.fs6{font-size:34.559986pt;}
.fsd{font-size:37.119985pt;}
.fs5{font-size:42.879983pt;}
.fsc{font-size:45.439982pt;}
.fs8{font-size:47.999981pt;}
.fs7{font-size:53.119979pt;}
.fs0{font-size:63.999974pt;}
.fsb{font-size:66.559973pt;}
.fs1{font-size:74.879970pt;}
.fs4{font-size:85.119966pt;}
.fs2{font-size:95.999962pt;}
.y46{bottom:-13.920909pt;}
.y0{bottom:0.000000pt;}
.y8{bottom:2.559040pt;}
.y1c{bottom:2.719181pt;}
.y11c{bottom:2.719201pt;}
.y120{bottom:2.719206pt;}
.y122{bottom:2.719218pt;}
.y24{bottom:2.719220pt;}
.yb6{bottom:2.719228pt;}
.y125{bottom:2.719229pt;}
.yb8{bottom:2.719236pt;}
.y128{bottom:2.719240pt;}
.y12b{bottom:2.719252pt;}
.yd7{bottom:2.719273pt;}
.yd9{bottom:2.719282pt;}
.yee{bottom:2.719284pt;}
.yf0{bottom:2.719292pt;}
.y103{bottom:2.719300pt;}
.y13{bottom:2.879140pt;}
.y21{bottom:3.039210pt;}
.y41{bottom:3.359058pt;}
.ya{bottom:3.679062pt;}
.y1e{bottom:3.839181pt;}
.y4{bottom:3.840025pt;}
.y15{bottom:4.319147pt;}
.y19{bottom:4.319163pt;}
.y78{bottom:51.946913pt;}
.y6{bottom:52.106912pt;}
.y76{bottom:66.506880pt;}
.y3{bottom:66.666880pt;}
.y77{bottom:70.026905pt;}
.y5{bottom:70.186905pt;}
.y75{bottom:70.346639pt;}
.y2{bottom:70.506638pt;}
.ya6{bottom:104.426892pt;}
.ycf{bottom:105.706891pt;}
.y3e{bottom:109.226623pt;}
.y13d{bottom:114.346888pt;}
.y111{bottom:114.986887pt;}
.yea{bottom:115.146887pt;}
.y73{bottom:116.106887pt;}
.ya5{bottom:125.066883pt;}
.yce{bottom:126.026883pt;}
.y3d{bottom:129.706615pt;}
.y13c{bottom:135.146613pt;}
.y110{bottom:135.466612pt;}
.ye9{bottom:135.626612pt;}
.y72{bottom:136.426612pt;}
.yff{bottom:136.586612pt;}
.ya4{bottom:145.866608pt;}
.ycd{bottom:146.506608pt;}
.y3c{bottom:150.186607pt;}
.y10f{bottom:155.946604pt;}
.ye8{bottom:156.106604pt;}
.y71{bottom:156.906604pt;}
.yfe{bottom:157.066604pt;}
.ya3{bottom:166.666600pt;}
.ycc{bottom:166.986600pt;}
.y3b{bottom:170.666598pt;}
.y10e{bottom:176.426596pt;}
.ye7{bottom:176.586596pt;}
.y70{bottom:177.386596pt;}
.yfd{bottom:177.546596pt;}
.ya2{bottom:187.306592pt;}
.ycb{bottom:187.466592pt;}
.y3a{bottom:190.986590pt;}
.y10d{bottom:196.746588pt;}
.ye6{bottom:197.066588pt;}
.y13b{bottom:197.386588pt;}
.y6f{bottom:197.866588pt;}
.yfc{bottom:198.026587pt;}
.ya1{bottom:207.626584pt;}
.yca{bottom:207.946583pt;}
.y39{bottom:211.466582pt;}
.yfb{bottom:216.106580pt;}
.y10c{bottom:217.226580pt;}
.ye5{bottom:217.386580pt;}
.y13a{bottom:218.026579pt;}
.y6e{bottom:218.346579pt;}
.ya0{bottom:227.626576pt;}
.yc9{bottom:228.426575pt;}
.y38{bottom:231.946574pt;}
.yfa{bottom:234.346573pt;}
.y10b{bottom:237.706572pt;}
.ye4{bottom:237.866572pt;}
.y6d{bottom:238.826571pt;}
.y9f{bottom:248.426567pt;}
.yc8{bottom:248.746567pt;}
.y37{bottom:252.426566pt;}
.yf9{bottom:254.826565pt;}
.y10a{bottom:258.186563pt;}
.ye3{bottom:258.346563pt;}
.y6c{bottom:259.146563pt;}
.y139{bottom:259.626563pt;}
.y9e{bottom:269.066559pt;}
.yc7{bottom:269.226559pt;}
.y36{bottom:272.906558pt;}
.yf8{bottom:275.146557pt;}
.y109{bottom:278.666555pt;}
.ye2{bottom:278.826555pt;}
.y6b{bottom:279.626555pt;}
.y138{bottom:280.266555pt;}
.yc6{bottom:289.706551pt;}
.y9d{bottom:289.866551pt;}
.y35{bottom:293.386549pt;}
.yf7{bottom:295.626548pt;}
.y108{bottom:299.146547pt;}
.ye1{bottom:299.306547pt;}
.y6a{bottom:300.106547pt;}
.y137{bottom:301.066546pt;}
.yc5{bottom:310.186543pt;}
.y9c{bottom:310.666542pt;}
.y34{bottom:313.706541pt;}
.yf6{bottom:316.106540pt;}
.y107{bottom:319.466539pt;}
.ye0{bottom:319.786539pt;}
.y69{bottom:320.586538pt;}
.y136{bottom:321.706538pt;}
.yc4{bottom:330.666534pt;}
.y9b{bottom:331.306534pt;}
.y33{bottom:334.186533pt;}
.yf5{bottom:336.586532pt;}
.y106{bottom:339.946531pt;}
.ydf{bottom:340.106531pt;}
.y68{bottom:341.066530pt;}
.y135{bottom:342.506530pt;}
.y32{bottom:348.586527pt;}
.yc3{bottom:351.146526pt;}
.y31{bottom:351.946526pt;}
.y9a{bottom:352.106526pt;}
.yf4{bottom:357.066524pt;}
.y105{bottom:360.426522pt;}
.yde{bottom:360.586522pt;}
.y67{bottom:361.546522pt;}
.y134{bottom:363.306521pt;}
.y30{bottom:370.186519pt;}
.yc2{bottom:371.466518pt;}
.y99{bottom:372.746518pt;}
.yf3{bottom:377.546516pt;}
.y104{bottom:378.666515pt;}
.ydd{bottom:381.066514pt;}
.y66{bottom:381.866514pt;}
.y133{bottom:383.946513pt;}
.y2f{bottom:390.666510pt;}
.yc1{bottom:391.946510pt;}
.y98{bottom:393.546509pt;}
.yf2{bottom:396.746508pt;}
.ydc{bottom:401.546506pt;}
.y65{bottom:402.346506pt;}
.y132{bottom:404.746505pt;}
.y2e{bottom:411.146502pt;}
.yc0{bottom:412.426502pt;}
.y97{bottom:414.346501pt;}
.y102{bottom:414.507200pt;}
.yf1{bottom:416.106500pt;}
.ydb{bottom:422.026498pt;}
.y64{bottom:422.826498pt;}
.y131{bottom:425.386497pt;}
.y171{bottom:428.266495pt;}
.y2d{bottom:431.466494pt;}
.ybf{bottom:432.906494pt;}
.yef{bottom:433.867200pt;}
.y96{bottom:434.986493pt;}
.y101{bottom:434.987200pt;}
.yda{bottom:442.346490pt;}
.y63{bottom:443.306489pt;}
.y130{bottom:446.186488pt;}
.y170{bottom:448.746487pt;}
.y158{bottom:451.146486pt;}
.y2c{bottom:452.106486pt;}
.ybe{bottom:453.386485pt;}
.yed{bottom:454.347200pt;}
.y95{bottom:455.786484pt;}
.yd8{bottom:460.107200pt;}
.y62{bottom:463.786481pt;}
.y12f{bottom:466.986480pt;}
.y16f{bottom:470.346479pt;}
.y157{bottom:471.306478pt;}
.y2b{bottom:472.746478pt;}
.ybd{bottom:473.866477pt;}
.y94{bottom:476.426476pt;}
.yd6{bottom:480.587200pt;}
.y61{bottom:484.266473pt;}
.y12e{bottom:487.626472pt;}
.y156{bottom:491.466470pt;}
.y16e{bottom:492.266470pt;}
.y2a{bottom:493.226469pt;}
.ybc{bottom:494.186469pt;}
.y93{bottom:497.226468pt;}
.y60{bottom:504.586465pt;}
.y12d{bottom:508.266463pt;}
.y155{bottom:511.626462pt;}
.y29{bottom:513.546461pt;}
.y16d{bottom:514.026461pt;}
.ybb{bottom:514.666461pt;}
.y92{bottom:518.026459pt;}
.y12c{bottom:523.786457pt;}
.y5f{bottom:525.066457pt;}
.y154{bottom:531.786454pt;}
.y28{bottom:534.026453pt;}
.y12a{bottom:534.667200pt;}
.yba{bottom:535.146453pt;}
.y16c{bottom:535.786452pt;}
.y91{bottom:538.666451pt;}
.y5e{bottom:545.546448pt;}
.y129{bottom:551.946446pt;}
.y27{bottom:554.506445pt;}
.yb9{bottom:555.626444pt;}
.y16b{bottom:557.706444pt;}
.y90{bottom:559.466443pt;}
.y127{bottom:562.987200pt;}
.y5d{bottom:566.026440pt;}
.y100{bottom:566.346440pt;}
.y153{bottom:572.106438pt;}
.yb7{bottom:573.387200pt;}
.y26{bottom:574.986437pt;}
.y16a{bottom:579.466435pt;}
.y8f{bottom:580.106435pt;}
.y126{bottom:580.266435pt;}
.yec{bottom:586.346432pt;}
.y5c{bottom:586.506432pt;}
.y124{bottom:591.147200pt;}
.y152{bottom:592.266430pt;}
.yb5{bottom:593.707200pt;}
.y25{bottom:595.466428pt;}
.y8e{bottom:600.906426pt;}
.y169{bottom:601.226426pt;}
.yeb{bottom:606.666424pt;}
.y5b{bottom:606.826424pt;}
.y123{bottom:608.586423pt;}
.y151{bottom:612.426422pt;}
.y23{bottom:613.227200pt;}
.y121{bottom:619.467200pt;}
.y8d{bottom:621.706418pt;}
.y168{bottom:623.146417pt;}
.yd5{bottom:627.146416pt;}
.y5a{bottom:627.306416pt;}
.y150{bottom:632.586414pt;}
.y11e{bottom:637.866412pt;}
.y20{bottom:638.187200pt;}
.y22{bottom:641.226410pt;}
.y8c{bottom:642.346410pt;}
.y167{bottom:644.906409pt;}
.yd4{bottom:647.626408pt;}
.y59{bottom:647.786408pt;}
.y11f{bottom:648.747200pt;}
.y11d{bottom:651.466406pt;}
.y14f{bottom:652.746406pt;}
.y11b{bottom:662.347200pt;}
.y8b{bottom:663.146401pt;}
.y166{bottom:666.666400pt;}
.yd3{bottom:668.106399pt;}
.y58{bottom:668.266399pt;}
.y14e{bottom:672.906398pt;}
.y1f{bottom:674.666397pt;}
.y8a{bottom:683.786393pt;}
.y11a{bottom:687.786392pt;}
.yd2{bottom:688.586391pt;}
.y57{bottom:688.746391pt;}
.y14d{bottom:693.066389pt;}
.y89{bottom:704.586385pt;}
.y119{bottom:708.106383pt;}
.yd1{bottom:709.066383pt;}
.y56{bottom:709.226383pt;}
.y1d{bottom:709.867200pt;}
.y165{bottom:710.346383pt;}
.y1b{bottom:710.987200pt;}
.y14c{bottom:713.226381pt;}
.y88{bottom:725.386377pt;}
.y1a{bottom:728.106375pt;}
.y118{bottom:728.586375pt;}
.yd0{bottom:729.386375pt;}
.y55{bottom:729.546375pt;}
.y164{bottom:732.106374pt;}
.y14b{bottom:733.386373pt;}
.y87{bottom:746.026368pt;}
.y117{bottom:749.066367pt;}
.yb4{bottom:749.866367pt;}
.y54{bottom:750.026367pt;}
.y14a{bottom:753.546365pt;}
.y163{bottom:754.026365pt;}
.y18{bottom:755.627200pt;}
.y86{bottom:766.826360pt;}
.y116{bottom:769.546359pt;}
.yb3{bottom:770.346359pt;}
.y53{bottom:770.506358pt;}
.y149{bottom:773.706357pt;}
.y17{bottom:775.786356pt;}
.y85{bottom:787.466352pt;}
.y115{bottom:790.026351pt;}
.yb2{bottom:790.826350pt;}
.y52{bottom:790.986350pt;}
.y148{bottom:793.866349pt;}
.y14{bottom:795.947200pt;}
.y162{bottom:797.706348pt;}
.y16{bottom:804.906345pt;}
.y84{bottom:808.266343pt;}
.y114{bottom:810.666342pt;}
.yb1{bottom:811.306342pt;}
.y51{bottom:811.466342pt;}
.y12{bottom:814.027200pt;}
.y147{bottom:814.186341pt;}
.y161{bottom:819.466339pt;}
.y83{bottom:829.066335pt;}
.y113{bottom:831.306334pt;}
.yb0{bottom:831.786334pt;}
.y50{bottom:831.946334pt;}
.y146{bottom:834.346333pt;}
.y160{bottom:841.226330pt;}
.y11{bottom:843.786329pt;}
.y82{bottom:849.706327pt;}
.y112{bottom:851.946326pt;}
.yaf{bottom:852.106326pt;}
.y4f{bottom:852.266326pt;}
.y145{bottom:854.506325pt;}
.y15f{bottom:863.146321pt;}
.y81{bottom:870.506318pt;}
.yae{bottom:872.586318pt;}
.y4e{bottom:872.746318pt;}
.y144{bottom:874.666317pt;}
.y10{bottom:880.106315pt;}
.y15e{bottom:884.906313pt;}
.y80{bottom:891.146310pt;}
.yad{bottom:893.066309pt;}
.y4d{bottom:893.226309pt;}
.y143{bottom:894.826309pt;}
.yf{bottom:900.906306pt;}
.y15d{bottom:906.666304pt;}
.y7f{bottom:911.946302pt;}
.yac{bottom:913.546301pt;}
.y4c{bottom:913.706301pt;}
.y142{bottom:914.986301pt;}
.ye{bottom:915.466300pt;}
.yd{bottom:915.786300pt;}
.y15c{bottom:928.586295pt;}
.y7e{bottom:932.746294pt;}
.yab{bottom:934.026293pt;}
.y4b{bottom:934.186293pt;}
.y141{bottom:935.146293pt;}
.y15b{bottom:950.346287pt;}
.y7d{bottom:953.386285pt;}
.y45{bottom:954.027200pt;}
.yaa{bottom:954.506285pt;}
.y4a{bottom:954.666285pt;}
.y140{bottom:955.306285pt;}
.y44{bottom:962.026282pt;}
.y15a{bottom:972.106278pt;}
.y7c{bottom:974.186277pt;}
.ya9{bottom:974.826277pt;}
.y49{bottom:974.986277pt;}
.y13f{bottom:975.466276pt;}
.y43{bottom:980.906274pt;}
.y159{bottom:994.026269pt;}
.y7b{bottom:994.826269pt;}
.ya8{bottom:995.306269pt;}
.y48{bottom:995.466268pt;}
.y13e{bottom:995.626268pt;}
.y42{bottom:999.946267pt;}
.yc{bottom:1001.866266pt;}
.yb{bottom:1002.186266pt;}
.y9{bottom:1008.267200pt;}
.y7a{bottom:1015.626260pt;}
.ya7{bottom:1015.786260pt;}
.y47{bottom:1015.946260pt;}
.y40{bottom:1018.027200pt;}
.y3f{bottom:1021.386258pt;}
.y74{bottom:1060.106243pt;}
.y1{bottom:1060.266243pt;}
.y79{bottom:1062.827200pt;}
.y7{bottom:1062.987200pt;}
.h23{height:2.560000pt;}
.hb{height:7.262185pt;}
.hd{height:12.000000pt;}
.h16{height:13.440000pt;}
.h29{height:13.600000pt;}
.h26{height:13.760000pt;}
.h1d{height:14.097182pt;}
.h18{height:14.560000pt;}
.h1b{height:15.200000pt;}
.hf{height:17.920000pt;}
.h13{height:18.080000pt;}
.h2{height:18.240000pt;}
.h7{height:18.400000pt;}
.h4{height:18.560000pt;}
.h21{height:19.360000pt;}
.h1e{height:23.034366pt;}
.h11{height:23.068116pt;}
.h28{height:28.075614pt;}
.he{height:28.621551pt;}
.h1a{height:29.856863pt;}
.h27{height:32.432175pt;}
.h12{height:32.788112pt;}
.h25{height:34.368424pt;}
.h15{height:35.560298pt;}
.h17{height:36.304673pt;}
.h22{height:36.703110pt;}
.h1f{height:38.387485pt;}
.h1c{height:40.177171pt;}
.h8{height:42.656233pt;}
.h10{height:42.718733pt;}
.h14{height:42.843733pt;}
.h24{height:44.362482pt;}
.h19{height:44.562482pt;}
.ha{height:48.406231pt;}
.h20{height:48.937480pt;}
.h5{height:49.980918pt;}
.hc{height:56.815915pt;}
.h1{height:62.812475pt;}
.h3{height:64.499974pt;}
.h9{height:69.749972pt;}
.h6{height:75.464970pt;}
.h0{height:1122.666667pt;}
.w39{width:0.320000pt;}
.w32{width:0.640000pt;}
.w45{width:0.800000pt;}
.w2a{width:2.400000pt;}
.w2c{width:2.880000pt;}
.w20{width:3.840000pt;}
.wd{width:4.000000pt;}
.w28{width:4.160000pt;}
.w22{width:4.480000pt;}
.w1e{width:4.800000pt;}
.w1a{width:5.600000pt;}
.w1{width:5.760000pt;}
.wf{width:6.080000pt;}
.w12{width:6.880000pt;}
.w7{width:7.360000pt;}
.w18{width:8.800000pt;}
.w17{width:9.440000pt;}
.w5{width:9.920000pt;}
.w6{width:10.080000pt;}
.w3c{width:10.720000pt;}
.wb{width:10.880000pt;}
.w9{width:11.040000pt;}
.w2b{width:12.480000pt;}
.w3a{width:13.920000pt;}
.w33{width:14.080000pt;}
.w3{width:14.240000pt;}
.w36{width:19.360000pt;}
.w3e{width:19.840000pt;}
.w30{width:20.000000pt;}
.w2f{width:20.160000pt;}
.w42{width:20.480000pt;}
.w27{width:22.080000pt;}
.w3f{width:24.320000pt;}
.w37{width:24.640000pt;}
.w43{width:25.600000pt;}
.w35{width:26.080000pt;}
.w2e{width:26.400000pt;}
.w3d{width:28.160000pt;}
.w4{width:29.760000pt;}
.w26{width:30.400000pt;}
.w29{width:31.840000pt;}
.w25{width:33.280000pt;}
.w44{width:35.040000pt;}
.w31{width:35.200000pt;}
.w38{width:35.840000pt;}
.w40{width:36.000000pt;}
.w19{width:38.720000pt;}
.w10{width:39.520000pt;}
.w1d{width:39.680000pt;}
.w13{width:58.400000pt;}
.w24{width:58.880000pt;}
.w3b{width:61.120000pt;}
.we{width:63.200000pt;}
.w2d{width:67.200000pt;}
.wc{width:69.280000pt;}
.w34{width:71.680000pt;}
.w41{width:71.840000pt;}
.w11{width:74.720000pt;}
.w8{width:96.800000pt;}
.w15{width:99.520000pt;}
.w2{width:106.400000pt;}
.w16{width:147.040000pt;}
.w1f{width:243.840000pt;}
.w1b{width:244.000000pt;}
.w23{width:244.160000pt;}
.w21{width:245.760000pt;}
.wa{width:262.400000pt;}
.w1c{width:288.000000pt;}
.w14{width:353.920000pt;}
.w0{width:793.333333pt;}
.x0{left:0.000000pt;}
.x1{left:95.999962pt;}
.x1e{left:97.119961pt;}
.x2c{left:103.519959pt;}
.x5{left:106.880000pt;}
.x2{left:122.399966pt;}
.x35{left:135.840000pt;}
.x3{left:138.400000pt;}
.x36{left:140.320000pt;}
.x4{left:152.799939pt;}
.x29{left:155.199938pt;}
.xa{left:164.639934pt;}
.x22{left:166.400000pt;}
.x23{left:170.400000pt;}
.x1f{left:193.919922pt;}
.x20{left:198.080000pt;}
.x6{left:213.280000pt;}
.xb{left:230.880281pt;}
.x24{left:233.600000pt;}
.x25{left:239.680000pt;}
.x26{left:279.200000pt;}
.x27{left:285.280000pt;}
.x2e{left:304.479878pt;}
.x21{left:359.040000pt;}
.xc{left:380.160094pt;}
.xd{left:384.160091pt;}
.x30{left:387.519845pt;}
.x2d{left:411.200455pt;}
.x3f{left:423.840000pt;}
.x46{left:425.440000pt;}
.x40{left:428.320000pt;}
.x47{left:429.920000pt;}
.x41{left:431.200000pt;}
.x48{left:432.800000pt;}
.x33{left:450.080000pt;}
.x2a{left:451.040000pt;}
.x37{left:453.600000pt;}
.x34{left:455.360000pt;}
.xe{left:458.720045pt;}
.xf{left:470.560037pt;}
.x10{left:482.400029pt;}
.x32{left:494.399802pt;}
.x11{left:501.919965pt;}
.x12{left:505.919962pt;}
.x38{left:514.560000pt;}
.x4c{left:515.520000pt;}
.x39{left:516.799793pt;}
.x13{left:517.759954pt;}
.x31{left:524.159790pt;}
.x14{left:529.439947pt;}
.x15{left:541.279939pt;}
.x42{left:542.880000pt;}
.x16{left:545.279936pt;}
.x2b{left:550.560000pt;}
.x3b{left:553.919778pt;}
.x17{left:560.959873pt;}
.x18{left:564.799872pt;}
.x3a{left:569.600000pt;}
.x3c{left:572.639838pt;}
.x49{left:573.600000pt;}
.x19{left:576.639864pt;}
.x1a{left:580.479862pt;}
.x1b{left:584.479859pt;}
.x1c{left:592.319763pt;}
.x43{left:593.280000pt;}
.x7{left:619.840000pt;}
.x4a{left:626.880000pt;}
.x3d{left:629.600000pt;}
.x8{left:649.600000pt;}
.x4b{left:651.520000pt;}
.x9{left:659.520000pt;}
.x44{left:663.520000pt;}
.x3e{left:665.120000pt;}
.x2f{left:692.960000pt;}
.x28{left:694.719722pt;}
.x1d{left:696.479721pt;}
.x45{left:698.720000pt;}
}




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