
    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_9d1f6883554a20f3d24aa8d6.woff')format("woff");}.ff1{font-family:ff1;line-height:1.104004;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_c5676dbe5a4c72175c153537.woff')format("woff");}.ff2{font-family:ff2;line-height:0.952148;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_959f53ca4ce779d4a085b5d2.woff')format("woff");}.ff3{font-family:ff3;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_d4ee4c195b825597c601be1a.woff')format("woff");}.ff4{font-family:ff4;line-height:0.960000;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_5e680101ee0bb5e6663fbd78.woff')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_c7a16787e71365ad179f6e16.woff')format("woff");}.ff6{font-family:ff6;line-height:0.942383;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_fdd7772fcf4a6c9b8aeccb7d.woff')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_eec588b2f8dac7346b495806.woff')format("woff");}.ff8{font-family:ff8;line-height:0.704102;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_3ae6935903b63e4df81aad28.woff')format("woff");}.ff9{font-family:ff9;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0{vertical-align:0.000000px;}
.ls0{letter-spacing:0.000000px;}
.ls2{letter-spacing:0.017970px;}
.ls5{letter-spacing:0.017982px;}
.ls9{letter-spacing:0.018000px;}
.ls4{letter-spacing:0.018012px;}
.lsb{letter-spacing:0.872130px;}
.lsc{letter-spacing:0.923432px;}
.ls1{letter-spacing:1.458000px;}
.ls6{letter-spacing:1.476000px;}
.lsa{letter-spacing:2.592079px;}
.ls7{letter-spacing:11.664000px;}
.ls8{letter-spacing:544.877834px;}
.ls3{letter-spacing:798.569000px;}
.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;}
}
.wse{word-spacing:-51.301758px;}
.ws1{word-spacing:-21.129671px;}
.wsb{word-spacing:-16.416000px;}
.ws5{word-spacing:-14.958000px;}
.wsc{word-spacing:-14.210587px;}
.wsa{word-spacing:-13.344407px;}
.ws7{word-spacing:-13.296406px;}
.ws0{word-spacing:-11.633594px;}
.ws8{word-spacing:-1.512000px;}
.ws2{word-spacing:-0.054000px;}
.ws6{word-spacing:-0.048001px;}
.ws4{word-spacing:0.000000px;}
.wsd{word-spacing:101.474877px;}
.ws3{word-spacing:352.512000px;}
.ws9{word-spacing:758.247770px;}
._24{margin-left:-8.740595px;}
._23{margin-left:-7.174033px;}
._14{margin-left:-5.994000px;}
._4{margin-left:-3.486692px;}
._3{margin-left:-2.019639px;}
._0{margin-left:-1.007965px;}
._1{width:1.133960px;}
._2{width:2.603909px;}
._7{width:4.347202px;}
._8{width:5.897074px;}
._9{width:7.392901px;}
._6{width:9.179575px;}
._e{width:10.228836px;}
._c{width:11.229978px;}
._b{width:12.690000px;}
._d{width:13.891812px;}
._1a{width:15.403794px;}
._a{width:16.620328px;}
._12{width:17.649197px;}
._5{width:18.817476px;}
._21{width:19.869578px;}
._13{width:20.903303px;}
._1b{width:22.635769px;}
._1c{width:23.830640px;}
._11{width:25.283284px;}
._1e{width:26.366989px;}
._1f{width:27.722163px;}
._1d{width:28.728040px;}
._16{width:89.868540px;}
._22{width:115.685464px;}
._20{width:145.619101px;}
._15{width:172.619101px;}
._17{width:331.012716px;}
._10{width:400.176000px;}
._18{width:420.370720px;}
._f{width:488.484000px;}
._19{width:600.995296px;}
.fc3{color:rgb(10,84,44);}
.fc1{color:rgb(27,138,174);}
.fc5{color:rgb(60,60,60);}
.fc4{color:rgb(83,83,83);}
.fc2{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs6{font-size:36.000000px;}
.fs4{font-size:37.801758px;}
.fs0{font-size:41.998536px;}
.fs3{font-size:48.001464px;}
.fs7{font-size:51.301758px;}
.fs1{font-size:54.000000px;}
.fs5{font-size:70.198242px;}
.fs2{font-size:91.801758px;}
.y0{bottom:0.000000px;}
.y1bc{bottom:4.528447px;}
.y206{bottom:4.528681px;}
.y1ec{bottom:4.528919px;}
.y1bb{bottom:22.481574px;}
.y205{bottom:22.481808px;}
.y1eb{bottom:22.482047px;}
.y1ba{bottom:40.440563px;}
.y204{bottom:40.440797px;}
.y1ea{bottom:40.441028px;}
.y27{bottom:46.734370px;}
.y1b9{bottom:58.393687px;}
.y203{bottom:58.393922px;}
.y1e9{bottom:58.394155px;}
.y26{bottom:59.015622px;}
.y25{bottom:71.302734px;}
.y1b8{bottom:76.346808px;}
.y202{bottom:76.347044px;}
.y1e8{bottom:76.347282px;}
.yf9{bottom:86.531207px;}
.y190{bottom:87.973500px;}
.y73{bottom:89.719500px;}
.y1bd{bottom:91.078500px;}
.y72{bottom:92.068332px;}
.y1b7{bottom:94.305797px;}
.y201{bottom:94.306032px;}
.y1e7{bottom:94.306266px;}
.y136{bottom:94.628874px;}
.y14d{bottom:95.238261px;}
.yd2{bottom:96.626943px;}
.y117{bottom:97.330056px;}
.y4d{bottom:97.599605px;}
.yc7{bottom:101.314393px;}
.y13e{bottom:101.355435px;}
.y85{bottom:106.335905px;}
.y1b6{bottom:112.258922px;}
.y200{bottom:112.259148px;}
.y1e6{bottom:112.259389px;}
.y135{bottom:113.531223px;}
.yd1{bottom:115.523433px;}
.y4c{bottom:116.501947px;}
.yf8{bottom:118.927697px;}
.yc6{bottom:120.216743px;}
.y84{bottom:123.134737px;}
.y71{bottom:124.464822px;}
.yab{bottom:127.165962px;}
.y14c{bottom:127.640610px;}
.y116{bottom:129.732405px;}
.y1b5{bottom:130.212044px;}
.y1ff{bottom:130.212275px;}
.y1e5{bottom:130.212516px;}
.y18f{bottom:132.181641px;}
.y134{bottom:132.427713px;}
.y13d{bottom:133.751925px;}
.yd0{bottom:134.425782px;}
.y4b{bottom:135.398421px;}
.yc5{bottom:139.113232px;}
.y83{bottom:139.933569px;}
.yaa{bottom:146.068311px;}
.y1e4{bottom:148.165641px;}
.y1b4{bottom:148.171032px;}
.y1fe{bottom:148.171264px;}
.yf7{bottom:151.330046px;}
.y133{bottom:151.330062px;}
.y4a{bottom:154.300770px;}
.y82{bottom:156.732402px;}
.y70{bottom:156.867171px;}
.y14b{bottom:160.037100px;}
.y18e{bottom:160.927734px;}
.y115{bottom:162.128895px;}
.y22{bottom:163.224551px;}
.ya9{bottom:164.964801px;}
.ycf{bottom:165.082032px;}
.y1b3{bottom:166.124157px;}
.y1fd{bottom:166.124391px;}
.y1e3{bottom:166.124625px;}
.y13c{bottom:166.154274px;}
.y132{bottom:170.232411px;}
.yc4{bottom:171.515581px;}
.y49{bottom:173.203119px;}
.y81{bottom:173.531234px;}
.y173{bottom:178.464833px;}
.y21{bottom:182.126900px;}
.yf6{bottom:183.732395px;}
.ya8{bottom:183.867150px;}
.y1b2{bottom:184.077275px;}
.y1fc{bottom:184.077516px;}
.y1e2{bottom:184.077750px;}
.y131{bottom:189.128901px;}
.y6f{bottom:189.263661px;}
.y80{bottom:190.335922px;}
.y48{bottom:192.099598px;}
.y14a{bottom:192.439449px;}
.y114{bottom:194.531244px;}
.y172{bottom:197.367182px;}
.y13b{bottom:198.550764px;}
.y20{bottom:201.023390px;}
.y1fb{bottom:202.030634px;}
.y1e1{bottom:202.030868px;}
.y1b1{bottom:202.036264px;}
.yf5{bottom:202.628885px;}
.ya7{bottom:202.763640px;}
.yc3{bottom:203.912071px;}
.y7f{bottom:207.134755px;}
.y130{bottom:208.031240px;}
.y47{bottom:211.001947px;}
.y171{bottom:216.263618px;}
.y18d{bottom:216.533166px;}
.y1f{bottom:219.925739px;}
.y1b0{bottom:219.989391px;}
.y1fa{bottom:219.989623px;}
.y1e0{bottom:219.989857px;}
.yf4{bottom:221.531234px;}
.ya6{bottom:221.665989px;}
.y6e{bottom:221.666010px;}
.y7e{bottom:223.933587px;}
.y149{bottom:224.841798px;}
.y113{bottom:226.927697px;}
.y12f{bottom:226.927729px;}
.y46{bottom:229.898406px;}
.y13a{bottom:230.953113px;}
.yd9{bottom:232.535140px;}
.y170{bottom:235.165967px;}
.y18c{bottom:235.435515px;}
.yc2{bottom:236.314420px;}
.y1af{bottom:237.942516px;}
.y1f9{bottom:237.942750px;}
.y1df{bottom:237.942984px;}
.y1e{bottom:238.828088px;}
.yf3{bottom:240.427724px;}
.ya5{bottom:240.568338px;}
.y6d{bottom:240.568359px;}
.y7d{bottom:240.732420px;}
.y112{bottom:245.830046px;}
.y45{bottom:248.800755px;}
.yd8{bottom:249.333973px;}
.y16f{bottom:254.068316px;}
.y1ae{bottom:255.895637px;}
.y1f8{bottom:255.895875px;}
.y1de{bottom:255.896109px;}
.y7c{bottom:257.531252px;}
.y1d{bottom:257.724578px;}
.y12e{bottom:259.329987px;}
.yf2{bottom:259.330073px;}
.ya4{bottom:259.464828px;}
.y139{bottom:263.355462px;}
.y111{bottom:264.732395px;}
.yd7{bottom:266.132805px;}
.y154{bottom:266.835922px;}
.y44{bottom:267.703104px;}
.y18b{bottom:267.837864px;}
.yc1{bottom:268.716769px;}
.y6c{bottom:271.218750px;}
.y16e{bottom:272.964806px;}
.y1ad{bottom:273.854625px;}
.y1f7{bottom:273.854850px;}
.y1dd{bottom:273.855091px;}
.y7b{bottom:274.335940px;}
.y1c{bottom:276.626927px;}
.ya3{bottom:278.367177px;}
.yd6{bottom:282.937494px;}
.y110{bottom:283.628885px;}
.y153{bottom:283.634755px;}
.y43{bottom:286.599594px;}
.y18a{bottom:286.734354px;}
.y12d{bottom:291.732336px;}
.yf1{bottom:291.732351px;}
.y1ac{bottom:291.807750px;}
.y1f6{bottom:291.807977px;}
.y1dc{bottom:291.808218px;}
.y16d{bottom:291.867155px;}
.y86{bottom:294.509766px;}
.y1b{bottom:295.523417px;}
.y7a{bottom:295.634766px;}
.y138{bottom:295.751952px;}
.ya2{bottom:297.263667px;}
.yd5{bottom:299.736326px;}
.y152{bottom:300.433587px;}
.yc0{bottom:301.113259px;}
.y10f{bottom:302.531234px;}
.y1ab{bottom:309.760868px;}
.y1f5{bottom:309.761105px;}
.y1db{bottom:309.761336px;}
.y1a{bottom:314.425766px;}
.ya1{bottom:316.166010px;}
.yd4{bottom:316.535158px;}
.y151{bottom:317.232420px;}
.y42{bottom:319.001943px;}
.y189{bottom:319.136703px;}
.y10e{bottom:321.427724px;}
.y12c{bottom:324.128826px;}
.yf0{bottom:324.128841px;}
.y16c{bottom:324.263645px;}
.y6b{bottom:326.829997px;}
.y1aa{bottom:327.719857px;}
.y1f4{bottom:327.720093px;}
.y1da{bottom:327.720324px;}
.y137{bottom:328.154301px;}
.y19{bottom:333.328115px;}
.ybf{bottom:333.515608px;}
.y150{bottom:334.037108px;}
.ya0{bottom:335.068359px;}
.yda{bottom:336.708984px;}
.yd3{bottom:337.833984px;}
.y41{bottom:337.898433px;}
.y10d{bottom:340.330073px;}
.y16b{bottom:343.165994px;}
.y1a9{bottom:345.672984px;}
.y1f3{bottom:345.673218px;}
.y1d9{bottom:345.673451px;}
.y6a{bottom:345.732346px;}
.y14f{bottom:350.835940px;}
.y188{bottom:351.533193px;}
.y18{bottom:352.224605px;}
.y12b{bottom:356.531175px;}
.yef{bottom:356.531190px;}
.y40{bottom:356.800776px;}
.y16a{bottom:362.068343px;}
.y1a8{bottom:363.626089px;}
.y1f2{bottom:363.626338px;}
.y1d8{bottom:363.626579px;}
.y69{bottom:364.628837px;}
.y9f{bottom:365.718750px;}
.ybe{bottom:365.912098px;}
.y144{bottom:370.148426px;}
.y155{bottom:371.009766px;}
.y17{bottom:371.126954px;}
.y14e{bottom:372.134766px;}
.y10c{bottom:372.732319px;}
.y3f{bottom:375.703119px;}
.y169{bottom:380.964833px;}
.y1a7{bottom:381.585077px;}
.y1f1{bottom:381.585326px;}
.y1d7{bottom:381.585558px;}
.y68{bottom:383.531185px;}
.y187{bottom:383.935542px;}
.y143{bottom:386.947259px;}
.y12a{bottom:388.927665px;}
.yee{bottom:388.927680px;}
.y3e{bottom:394.599605px;}
.ybd{bottom:398.314447px;}
.y1a6{bottom:399.538204px;}
.y1f0{bottom:399.538454px;}
.y1d6{bottom:399.538685px;}
.y168{bottom:399.867182px;}
.y16{bottom:401.783203px;}
.y67{bottom:402.427676px;}
.y186{bottom:402.837891px;}
.y142{bottom:403.746091px;}
.y10b{bottom:405.128809px;}
.y3d{bottom:413.501948px;}
.y1a5{bottom:417.491331px;}
.y1ef{bottom:417.491579px;}
.y1d5{bottom:417.491813px;}
.y167{bottom:418.763661px;}
.y141{bottom:420.550780px;}
.y129{bottom:421.330014px;}
.y66{bottom:421.330025px;}
.yed{bottom:421.330029px;}
.y9e{bottom:421.330073px;}
.ybc{bottom:430.716796px;}
.y3c{bottom:432.398421px;}
.y185{bottom:433.488282px;}
.y1a4{bottom:435.450320px;}
.y1ee{bottom:435.450563px;}
.y1d4{bottom:435.450797px;}
.y140{bottom:437.349612px;}
.y10a{bottom:437.531159px;}
.y166{bottom:437.666010px;}
.y9d{bottom:440.232293px;}
.y65{bottom:440.232373px;}
.y3b{bottom:451.300770px;}
.y1a3{bottom:453.403447px;}
.y1d3{bottom:453.403916px;}
.y128{bottom:453.732363px;}
.yec{bottom:453.732378px;}
.y165{bottom:456.568359px;}
.y145{bottom:457.523438px;}
.y13f{bottom:458.648438px;}
.y9c{bottom:459.128782px;}
.y64{bottom:459.128864px;}
.ybb{bottom:466.406255px;}
.y109{bottom:469.927649px;}
.y3a{bottom:470.203119px;}
.y15{bottom:470.882813px;}
.y1a2{bottom:471.356574px;}
.y1d2{bottom:471.357044px;}
.y9b{bottom:478.031131px;}
.y63{bottom:478.031213px;}
.yba{bottom:485.302740px;}
.y1ed{bottom:486.088500px;}
.y127{bottom:486.128853px;}
.yeb{bottom:486.128868px;}
.y164{bottom:487.218750px;}
.y14{bottom:487.681628px;}
.y184{bottom:489.099594px;}
.y39{bottom:489.099599px;}
.y1a1{bottom:489.315562px;}
.y1d1{bottom:489.316032px;}
.y9a{bottom:496.927621px;}
.y62{bottom:496.927702px;}
.y108{bottom:502.329997px;}
.y13{bottom:504.480455px;}
.y1a0{bottom:507.268687px;}
.y1d0{bottom:507.269155px;}
.y183{bottom:508.001943px;}
.y38{bottom:508.001948px;}
.yb9{bottom:512.080083px;}
.y99{bottom:515.829971px;}
.y61{bottom:515.830052px;}
.y126{bottom:518.531202px;}
.yea{bottom:518.531217px;}
.y19f{bottom:525.221808px;}
.y1cf{bottom:525.222282px;}
.y12{bottom:525.779288px;}
.y37{bottom:526.898433px;}
.yb8{bottom:530.982427px;}
.y98{bottom:534.732319px;}
.y107{bottom:534.732347px;}
.y60{bottom:534.732400px;}
.y163{bottom:542.830002px;}
.y19e{bottom:543.180797px;}
.y1ce{bottom:543.181264px;}
.y36{bottom:545.800770px;}
.y182{bottom:545.800782px;}
.y11{bottom:547.078121px;}
.y125{bottom:550.927692px;}
.ye9{bottom:550.927707px;}
.y97{bottom:553.628809px;}
.yb7{bottom:557.753911px;}
.y19d{bottom:561.133921px;}
.y1cd{bottom:561.134391px;}
.y162{bottom:561.732351px;}
.y35{bottom:564.703119px;}
.y106{bottom:567.128837px;}
.y5f{bottom:567.128890px;}
.y10{bottom:568.382813px;}
.ye8{bottom:569.830056px;}
.y96{bottom:572.531159px;}
.y181{bottom:576.457032px;}
.yb6{bottom:576.656255px;}
.y19c{bottom:579.087044px;}
.y1cc{bottom:579.087514px;}
.y161{bottom:580.628841px;}
.y124{bottom:583.330041px;}
.y5e{bottom:586.031239px;}
.y1cb{bottom:597.040641px;}
.y19b{bottom:597.046032px;}
.y34{bottom:597.099588px;}
.y105{bottom:599.531185px;}
.y160{bottom:599.531190px;}
.ye7{bottom:602.232405px;}
.yb5{bottom:603.427739px;}
.y95{bottom:604.927649px;}
.y5d{bottom:604.927729px;}
.y19a{bottom:614.999150px;}
.y1ca{bottom:614.999621px;}
.y123{bottom:615.732390px;}
.y33{bottom:616.001937px;}
.y15f{bottom:618.427680px;}
.yf{bottom:618.632846px;}
.yb4{bottom:622.330083px;}
.y94{bottom:623.829997px;}
.y5c{bottom:623.830072px;}
.ye{bottom:631.863310px;}
.y104{bottom:631.927676px;}
.y180{bottom:632.068299px;}
.y199{bottom:632.952278px;}
.y1c9{bottom:632.952748px;}
.y122{bottom:634.628880px;}
.ye6{bottom:634.628895px;}
.y32{bottom:634.898427px;}
.y93{bottom:642.732346px;}
.y5b{bottom:642.732417px;}
.yd{bottom:645.093774px;}
.yb3{bottom:649.107425px;}
.y15e{bottom:650.830029px;}
.y1c8{bottom:650.905875px;}
.y198{bottom:650.911266px;}
.y17f{bottom:650.964789px;}
.y121{bottom:653.531229px;}
.y31{bottom:653.800776px;}
.yc{bottom:658.324238px;}
.y92{bottom:661.628837px;}
.y5a{bottom:661.628901px;}
.y103{bottom:664.330025px;}
.ye5{bottom:667.031244px;}
.y197{bottom:668.864387px;}
.y1c7{bottom:668.864855px;}
.y17e{bottom:669.867138px;}
.yb{bottom:671.554702px;}
.y120{bottom:672.427719px;}
.y30{bottom:672.703114px;}
.yb2{bottom:675.878909px;}
.y91{bottom:680.531185px;}
.y59{bottom:680.531244px;}
.y15d{bottom:683.232378px;}
.ya{bottom:684.785166px;}
.ye4{bottom:685.927686px;}
.y196{bottom:686.817514px;}
.y1c6{bottom:686.817982px;}
.y17d{bottom:688.763628px;}
.y11f{bottom:691.330068px;}
.y2f{bottom:691.599604px;}
.yb1{bottom:694.781253px;}
.y102{bottom:696.732373px;}
.y9{bottom:698.015630px;}
.y90{bottom:699.427676px;}
.y58{bottom:699.427686px;}
.y195{bottom:704.770641px;}
.y1c5{bottom:704.771109px;}
.ye3{bottom:704.830035px;}
.y17c{bottom:707.665977px;}
.y11e{bottom:710.232417px;}
.y2e{bottom:710.501948px;}
.y8{bottom:711.246095px;}
.y15c{bottom:715.628868px;}
.y8f{bottom:718.330025px;}
.y57{bottom:718.330035px;}
.yb0{bottom:721.552737px;}
.y194{bottom:722.729625px;}
.y1c4{bottom:722.730090px;}
.ye2{bottom:723.732384px;}
.y17b{bottom:726.568326px;}
.y101{bottom:729.128864px;}
.y2d{bottom:729.398438px;}
.y7{bottom:732.199218px;}
.y24{bottom:736.699215px;}
.y8e{bottom:737.232373px;}
.y56{bottom:737.232384px;}
.yaf{bottom:740.455081px;}
.y193{bottom:740.682748px;}
.y1c3{bottom:740.683217px;}
.ye1{bottom:742.628874px;}
.y11d{bottom:742.628880px;}
.y17a{bottom:745.464816px;}
.y100{bottom:748.031213px;}
.y15b{bottom:748.031217px;}
.y148{bottom:750.732417px;}
.y6{bottom:751.400391px;}
.y23{bottom:755.900391px;}
.y8d{bottom:756.128864px;}
.y192{bottom:758.635875px;}
.y1c2{bottom:758.636345px;}
.y2c{bottom:760.054688px;}
.ye0{bottom:761.531223px;}
.y79{bottom:764.367177px;}
.yff{bottom:766.927703px;}
.yae{bottom:767.232424px;}
.y147{bottom:769.628864px;}
.y55{bottom:769.628874px;}
.y8c{bottom:775.031213px;}
.y11c{bottom:775.031229px;}
.y1c1{bottom:776.595329px;}
.y179{bottom:777.867165px;}
.y15a{bottom:780.427707px;}
.ydf{bottom:780.427713px;}
.y78{bottom:783.263667px;}
.yfe{bottom:785.830052px;}
.y146{bottom:788.531213px;}
.y54{bottom:788.531223px;}
.yce{bottom:788.531240px;}
.y5{bottom:793.710931px;}
.y11b{bottom:793.927719px;}
.yad{bottom:794.003907px;}
.y1c0{bottom:794.548447px;}
.y191{bottom:796.147593px;}
.y178{bottom:796.763655px;}
.y159{bottom:799.330056px;}
.yde{bottom:799.330062px;}
.y77{bottom:802.166016px;}
.yfd{bottom:804.732401px;}
.y8b{bottom:807.427703px;}
.y53{bottom:807.427713px;}
.ycd{bottom:807.427730px;}
.y1bf{bottom:812.501574px;}
.y11a{bottom:812.830068px;}
.y177{bottom:815.666004px;}
.y2b{bottom:815.666016px;}
.y158{bottom:818.232405px;}
.ydd{bottom:818.232411px;}
.yac{bottom:820.781250px;}
.yfc{bottom:823.628891px;}
.y8a{bottom:826.330052px;}
.y52{bottom:826.330062px;}
.y1be{bottom:830.460563px;}
.y74{bottom:831.110579px;}
.y4{bottom:831.269532px;}
.y119{bottom:831.732417px;}
.y76{bottom:832.822266px;}
.y176{bottom:834.568353px;}
.y157{bottom:837.128895px;}
.ydc{bottom:837.128901px;}
.y89{bottom:845.232401px;}
.y51{bottom:845.232411px;}
.y2a{bottom:846.322266px;}
.y118{bottom:850.628907px;}
.y175{bottom:853.464843px;}
.yfb{bottom:856.031239px;}
.y156{bottom:856.031244px;}
.ycb{bottom:859.482420px;}
.y88{bottom:864.128891px;}
.y50{bottom:864.128901px;}
.ydb{bottom:869.531239px;}
.yca{bottom:876.287108px;}
.y87{bottom:883.031239px;}
.y4f{bottom:883.031244px;}
.y174{bottom:884.121093px;}
.yfa{bottom:888.427729px;}
.y75{bottom:888.427734px;}
.yc9{bottom:893.085940px;}
.y3{bottom:899.378907px;}
.y29{bottom:901.927730px;}
.yc8{bottom:914.384766px;}
.y28{bottom:920.830079px;}
.y2{bottom:939.462894px;}
.y1{bottom:955.212891px;}
.ycc{bottom:974.730466px;}
.y4e{bottom:974.730470px;}
.h8{height:28.048904px;}
.hf{height:31.993163px;}
.h7{height:32.167969px;}
.h5{height:33.777938px;}
.h12{height:35.391704px;}
.hc{height:35.617086px;}
.h1{height:37.527989px;}
.h4{height:42.891933px;}
.h1a{height:45.840926px;}
.h1b{height:45.841008px;}
.h2{height:48.251953px;}
.ha{height:48.252019px;}
.h9{height:48.252037px;}
.h13{height:48.252061px;}
.hb{height:48.252079px;}
.h16{height:48.252103px;}
.h18{height:48.252127px;}
.hd{height:48.252145px;}
.h11{height:48.252169px;}
.h14{height:48.252235px;}
.h17{height:48.252319px;}
.h15{height:48.252361px;}
.h10{height:48.252469px;}
.h6{height:52.443023px;}
.h3{height:68.582368px;}
.h1d{height:448.875000px;}
.h19{height:819.990000px;}
.h1c{height:843.885000px;}
.he{height:845.244000px;}
.h0{height:1020.000000px;}
.w1{width:544.254000px;}
.w0{width:700.500000px;}
.x0{left:0.000000px;}
.xd{left:11.584593px;}
.xe{left:45.000609px;}
.x3{left:78.662109px;}
.xb{left:83.162109px;}
.x9{left:86.537109px;}
.x5{left:94.412109px;}
.x4{left:95.537109px;}
.x8{left:128.601562px;}
.xa{left:138.287109px;}
.x1{left:140.308593px;}
.x7{left:177.662109px;}
.x6{left:221.537109px;}
.xc{left:298.716802px;}
.x2{left:317.039062px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls2{letter-spacing:0.015973pt;}
.ls5{letter-spacing:0.015984pt;}
.ls9{letter-spacing:0.016000pt;}
.ls4{letter-spacing:0.016011pt;}
.lsb{letter-spacing:0.775227pt;}
.lsc{letter-spacing:0.820828pt;}
.ls1{letter-spacing:1.296000pt;}
.ls6{letter-spacing:1.312000pt;}
.lsa{letter-spacing:2.304070pt;}
.ls7{letter-spacing:10.368000pt;}
.ls8{letter-spacing:484.335853pt;}
.ls3{letter-spacing:709.839111pt;}
.wse{word-spacing:-45.601563pt;}
.ws1{word-spacing:-18.781930pt;}
.wsb{word-spacing:-14.592000pt;}
.ws5{word-spacing:-13.296000pt;}
.wsc{word-spacing:-12.631633pt;}
.wsa{word-spacing:-11.861695pt;}
.ws7{word-spacing:-11.819027pt;}
.ws0{word-spacing:-10.340973pt;}
.ws8{word-spacing:-1.344000pt;}
.ws2{word-spacing:-0.048000pt;}
.ws6{word-spacing:-0.042668pt;}
.ws4{word-spacing:0.000000pt;}
.wsd{word-spacing:90.199891pt;}
.ws3{word-spacing:313.344000pt;}
.ws9{word-spacing:673.998018pt;}
._24{margin-left:-7.769418pt;}
._23{margin-left:-6.376918pt;}
._14{margin-left:-5.328000pt;}
._4{margin-left:-3.099282pt;}
._3{margin-left:-1.795234pt;}
._0{margin-left:-0.895969pt;}
._1{width:1.007965pt;}
._2{width:2.314586pt;}
._7{width:3.864180pt;}
._8{width:5.241844pt;}
._9{width:6.571468pt;}
._6{width:8.159622pt;}
._e{width:9.092299pt;}
._c{width:9.982203pt;}
._b{width:11.280000pt;}
._d{width:12.348278pt;}
._1a{width:13.692261pt;}
._a{width:14.773625pt;}
._12{width:15.688175pt;}
._5{width:16.726645pt;}
._21{width:17.661847pt;}
._13{width:18.580714pt;}
._1b{width:20.120684pt;}
._1c{width:21.182791pt;}
._11{width:22.474030pt;}
._1e{width:23.437324pt;}
._1f{width:24.641923pt;}
._1d{width:25.536035pt;}
._16{width:79.883147pt;}
._22{width:102.831524pt;}
._20{width:129.439201pt;}
._15{width:153.439201pt;}
._17{width:294.233525pt;}
._10{width:355.712000pt;}
._18{width:373.662862pt;}
._f{width:434.208000pt;}
._19{width:534.218041pt;}
.fs6{font-size:32.000000pt;}
.fs4{font-size:33.601563pt;}
.fs0{font-size:37.332032pt;}
.fs3{font-size:42.667968pt;}
.fs7{font-size:45.601563pt;}
.fs1{font-size:48.000000pt;}
.fs5{font-size:62.398437pt;}
.fs2{font-size:81.601563pt;}
.y0{bottom:0.000000pt;}
.y1bc{bottom:4.025286pt;}
.y206{bottom:4.025494pt;}
.y1ec{bottom:4.025706pt;}
.y1bb{bottom:19.983621pt;}
.y205{bottom:19.983829pt;}
.y1eb{bottom:19.984041pt;}
.y1ba{bottom:35.947167pt;}
.y204{bottom:35.947375pt;}
.y1ea{bottom:35.947580pt;}
.y27{bottom:41.541662pt;}
.y1b9{bottom:51.905500pt;}
.y203{bottom:51.905708pt;}
.y1e9{bottom:51.905915pt;}
.y26{bottom:52.458331pt;}
.y25{bottom:63.380208pt;}
.y1b8{bottom:67.863829pt;}
.y202{bottom:67.864039pt;}
.y1e8{bottom:67.864251pt;}
.yf9{bottom:76.916628pt;}
.y190{bottom:78.198667pt;}
.y73{bottom:79.750667pt;}
.y1bd{bottom:80.958667pt;}
.y72{bottom:81.838517pt;}
.y1b7{bottom:83.827375pt;}
.y201{bottom:83.827584pt;}
.y1e7{bottom:83.827792pt;}
.y136{bottom:84.114555pt;}
.y14d{bottom:84.656232pt;}
.yd2{bottom:85.890616pt;}
.y117{bottom:86.515605pt;}
.y4d{bottom:86.755204pt;}
.yc7{bottom:90.057239pt;}
.y13e{bottom:90.093720pt;}
.y85{bottom:94.520804pt;}
.y1b6{bottom:99.785708pt;}
.y200{bottom:99.785910pt;}
.y1e6{bottom:99.786123pt;}
.y135{bottom:100.916643pt;}
.yd1{bottom:102.687496pt;}
.y4c{bottom:103.557287pt;}
.yf8{bottom:105.713508pt;}
.yc6{bottom:106.859327pt;}
.y84{bottom:109.453099pt;}
.y71{bottom:110.635397pt;}
.yab{bottom:113.036411pt;}
.y14c{bottom:113.458320pt;}
.y116{bottom:115.317693pt;}
.y1b5{bottom:115.744039pt;}
.y1ff{bottom:115.744245pt;}
.y1e5{bottom:115.744459pt;}
.y18f{bottom:117.494792pt;}
.y134{bottom:117.713523pt;}
.y13d{bottom:118.890600pt;}
.yd0{bottom:119.489584pt;}
.y4b{bottom:120.354152pt;}
.yc5{bottom:123.656207pt;}
.y83{bottom:124.385395pt;}
.yaa{bottom:129.838499pt;}
.y1e4{bottom:131.702792pt;}
.y1b4{bottom:131.707584pt;}
.y1fe{bottom:131.707790pt;}
.yf7{bottom:134.515596pt;}
.y133{bottom:134.515611pt;}
.y4a{bottom:137.156240pt;}
.y82{bottom:139.317690pt;}
.y70{bottom:139.437485pt;}
.y14b{bottom:142.255200pt;}
.y18e{bottom:143.046875pt;}
.y115{bottom:144.114573pt;}
.y22{bottom:145.088489pt;}
.ya9{bottom:146.635379pt;}
.ycf{bottom:146.739584pt;}
.y1b3{bottom:147.665917pt;}
.y1fd{bottom:147.666125pt;}
.y1e3{bottom:147.666333pt;}
.y13c{bottom:147.692688pt;}
.y132{bottom:151.317699pt;}
.yc4{bottom:152.458295pt;}
.y49{bottom:153.958328pt;}
.y81{bottom:154.249986pt;}
.y173{bottom:158.635407pt;}
.y21{bottom:161.890577pt;}
.yf6{bottom:163.317684pt;}
.ya8{bottom:163.437467pt;}
.y1b2{bottom:163.624245pt;}
.y1fc{bottom:163.624459pt;}
.y1e2{bottom:163.624667pt;}
.y131{bottom:168.114579pt;}
.y6f{bottom:168.234365pt;}
.y80{bottom:169.187487pt;}
.y48{bottom:170.755199pt;}
.y14a{bottom:171.057288pt;}
.y114{bottom:172.916661pt;}
.y172{bottom:175.437495pt;}
.y13b{bottom:176.489568pt;}
.y20{bottom:178.687457pt;}
.y1fb{bottom:179.582786pt;}
.y1e1{bottom:179.582994pt;}
.y1b1{bottom:179.587790pt;}
.yf5{bottom:180.114564pt;}
.ya7{bottom:180.234347pt;}
.yc3{bottom:181.255175pt;}
.y7f{bottom:184.119782pt;}
.y130{bottom:184.916657pt;}
.y47{bottom:187.557287pt;}
.y171{bottom:192.234327pt;}
.y18d{bottom:192.473925pt;}
.y1f{bottom:195.489545pt;}
.y1b0{bottom:195.546125pt;}
.y1fa{bottom:195.546331pt;}
.y1e0{bottom:195.546539pt;}
.yf4{bottom:196.916652pt;}
.ya6{bottom:197.036435pt;}
.y6e{bottom:197.036453pt;}
.y7e{bottom:199.052077pt;}
.y149{bottom:199.859376pt;}
.y113{bottom:201.713508pt;}
.y12f{bottom:201.713537pt;}
.y46{bottom:204.354139pt;}
.y13a{bottom:205.291656pt;}
.yd9{bottom:206.697903pt;}
.y170{bottom:209.036415pt;}
.y18c{bottom:209.276013pt;}
.yc2{bottom:210.057263pt;}
.y1af{bottom:211.504459pt;}
.y1f9{bottom:211.504667pt;}
.y1df{bottom:211.504875pt;}
.y1e{bottom:212.291633pt;}
.yf3{bottom:213.713532pt;}
.ya5{bottom:213.838523pt;}
.y6d{bottom:213.838541pt;}
.y7d{bottom:213.984373pt;}
.y112{bottom:218.515596pt;}
.y45{bottom:221.156227pt;}
.yd8{bottom:221.630198pt;}
.y16f{bottom:225.838503pt;}
.y1ae{bottom:227.462788pt;}
.y1f8{bottom:227.463000pt;}
.y1de{bottom:227.463208pt;}
.y7c{bottom:228.916668pt;}
.y1d{bottom:229.088513pt;}
.y12e{bottom:230.515544pt;}
.yf2{bottom:230.515620pt;}
.ya4{bottom:230.635403pt;}
.y139{bottom:234.093744pt;}
.y111{bottom:235.317684pt;}
.yd7{bottom:236.562493pt;}
.y154{bottom:237.187487pt;}
.y44{bottom:237.958315pt;}
.y18b{bottom:238.078101pt;}
.yc1{bottom:238.859351pt;}
.y6c{bottom:241.083333pt;}
.y16e{bottom:242.635383pt;}
.y1ad{bottom:243.426333pt;}
.y1f7{bottom:243.426534pt;}
.y1dd{bottom:243.426747pt;}
.y7b{bottom:243.854169pt;}
.y1c{bottom:245.890601pt;}
.ya3{bottom:247.437491pt;}
.yd6{bottom:251.499994pt;}
.y110{bottom:252.114564pt;}
.y153{bottom:252.119782pt;}
.y43{bottom:254.755195pt;}
.y18a{bottom:254.874981pt;}
.y12d{bottom:259.317632pt;}
.yf1{bottom:259.317645pt;}
.y1ac{bottom:259.384667pt;}
.y1f6{bottom:259.384869pt;}
.y1dc{bottom:259.385083pt;}
.y16d{bottom:259.437471pt;}
.y86{bottom:261.786459pt;}
.y1b{bottom:262.687481pt;}
.y7a{bottom:262.786459pt;}
.y138{bottom:262.890624pt;}
.ya2{bottom:264.234371pt;}
.yd5{bottom:266.432290pt;}
.y152{bottom:267.052077pt;}
.yc0{bottom:267.656231pt;}
.y10f{bottom:268.916652pt;}
.y1ab{bottom:275.342994pt;}
.y1f5{bottom:275.343204pt;}
.y1db{bottom:275.343410pt;}
.y1a{bottom:279.489569pt;}
.ya1{bottom:281.036453pt;}
.yd4{bottom:281.364585pt;}
.y151{bottom:281.984373pt;}
.y42{bottom:283.557283pt;}
.y189{bottom:283.677069pt;}
.y10e{bottom:285.713532pt;}
.y12c{bottom:288.114512pt;}
.yf0{bottom:288.114525pt;}
.y16c{bottom:288.234351pt;}
.y6b{bottom:290.515553pt;}
.y1aa{bottom:291.306539pt;}
.y1f4{bottom:291.306749pt;}
.y1da{bottom:291.306955pt;}
.y137{bottom:291.692712pt;}
.y19{bottom:296.291657pt;}
.ybf{bottom:296.458319pt;}
.y150{bottom:296.921874pt;}
.ya0{bottom:297.838541pt;}
.yda{bottom:299.296875pt;}
.yd3{bottom:300.296875pt;}
.y41{bottom:300.354163pt;}
.y10d{bottom:302.515620pt;}
.y16b{bottom:305.036439pt;}
.y1a9{bottom:307.264875pt;}
.y1f3{bottom:307.265083pt;}
.y1d9{bottom:307.265290pt;}
.y6a{bottom:307.317641pt;}
.y14f{bottom:311.854169pt;}
.y188{bottom:312.473949pt;}
.y18{bottom:313.088537pt;}
.y12b{bottom:316.916600pt;}
.yef{bottom:316.916613pt;}
.y40{bottom:317.156245pt;}
.y16a{bottom:321.838527pt;}
.y1a8{bottom:323.223190pt;}
.y1f2{bottom:323.223412pt;}
.y1d8{bottom:323.223625pt;}
.y69{bottom:324.114521pt;}
.y9f{bottom:325.083333pt;}
.ybe{bottom:325.255199pt;}
.y144{bottom:329.020823pt;}
.y155{bottom:329.786459pt;}
.y17{bottom:329.890625pt;}
.y14e{bottom:330.786459pt;}
.y10c{bottom:331.317617pt;}
.y3f{bottom:333.958328pt;}
.y169{bottom:338.635407pt;}
.y1a7{bottom:339.186735pt;}
.y1f1{bottom:339.186957pt;}
.y1d7{bottom:339.187163pt;}
.y68{bottom:340.916609pt;}
.y187{bottom:341.276037pt;}
.y143{bottom:343.953119pt;}
.y12a{bottom:345.713480pt;}
.yee{bottom:345.713493pt;}
.y3e{bottom:350.755204pt;}
.ybd{bottom:354.057287pt;}
.y1a6{bottom:355.145070pt;}
.y1f0{bottom:355.145292pt;}
.y1d6{bottom:355.145498pt;}
.y168{bottom:355.437495pt;}
.y16{bottom:357.140625pt;}
.y67{bottom:357.713489pt;}
.y186{bottom:358.078125pt;}
.y142{bottom:358.885414pt;}
.y10b{bottom:360.114497pt;}
.y3d{bottom:367.557287pt;}
.y1a5{bottom:371.103406pt;}
.y1ef{bottom:371.103625pt;}
.y1d5{bottom:371.103833pt;}
.y167{bottom:372.234365pt;}
.y141{bottom:373.822915pt;}
.y129{bottom:374.515568pt;}
.y66{bottom:374.515577pt;}
.yed{bottom:374.515581pt;}
.y9e{bottom:374.515620pt;}
.ybc{bottom:382.859375pt;}
.y3c{bottom:384.354152pt;}
.y185{bottom:385.322917pt;}
.y1a4{bottom:387.066951pt;}
.y1ee{bottom:387.067167pt;}
.y1d4{bottom:387.067375pt;}
.y140{bottom:388.755211pt;}
.y10a{bottom:388.916585pt;}
.y166{bottom:389.036453pt;}
.y9d{bottom:391.317593pt;}
.y65{bottom:391.317665pt;}
.y3b{bottom:401.156240pt;}
.y1a3{bottom:403.025286pt;}
.y1d3{bottom:403.025704pt;}
.y128{bottom:403.317656pt;}
.yec{bottom:403.317669pt;}
.y165{bottom:405.838541pt;}
.y145{bottom:406.687500pt;}
.y13f{bottom:407.687500pt;}
.y9c{bottom:408.114473pt;}
.y64{bottom:408.114545pt;}
.ybb{bottom:414.583338pt;}
.y109{bottom:417.713465pt;}
.y3a{bottom:417.958328pt;}
.y15{bottom:418.562500pt;}
.y1a2{bottom:418.983621pt;}
.y1d2{bottom:418.984039pt;}
.y9b{bottom:424.916561pt;}
.y63{bottom:424.916633pt;}
.yba{bottom:431.380214pt;}
.y1ed{bottom:432.078667pt;}
.y127{bottom:432.114536pt;}
.yeb{bottom:432.114549pt;}
.y164{bottom:433.083333pt;}
.y14{bottom:433.494781pt;}
.y184{bottom:434.755195pt;}
.y39{bottom:434.755199pt;}
.y1a1{bottom:434.947167pt;}
.y1d1{bottom:434.947584pt;}
.y9a{bottom:441.713441pt;}
.y62{bottom:441.713513pt;}
.y108{bottom:446.515553pt;}
.y13{bottom:448.427071pt;}
.y1a0{bottom:450.905500pt;}
.y1d0{bottom:450.905915pt;}
.y183{bottom:451.557283pt;}
.y38{bottom:451.557287pt;}
.yb9{bottom:455.182296pt;}
.y99{bottom:458.515529pt;}
.y61{bottom:458.515601pt;}
.y126{bottom:460.916624pt;}
.yea{bottom:460.916637pt;}
.y19f{bottom:466.863829pt;}
.y1cf{bottom:466.864251pt;}
.y12{bottom:467.359367pt;}
.y37{bottom:468.354163pt;}
.yb8{bottom:471.984379pt;}
.y98{bottom:475.317617pt;}
.y107{bottom:475.317641pt;}
.y60{bottom:475.317689pt;}
.y163{bottom:482.515557pt;}
.y19e{bottom:482.827375pt;}
.y1ce{bottom:482.827790pt;}
.y36{bottom:485.156240pt;}
.y182{bottom:485.156251pt;}
.y11{bottom:486.291663pt;}
.y125{bottom:489.713504pt;}
.ye9{bottom:489.713517pt;}
.y97{bottom:492.114497pt;}
.yb7{bottom:495.781254pt;}
.y19d{bottom:498.785708pt;}
.y1cd{bottom:498.786125pt;}
.y162{bottom:499.317645pt;}
.y35{bottom:501.958328pt;}
.y106{bottom:504.114521pt;}
.y5f{bottom:504.114569pt;}
.y10{bottom:505.229167pt;}
.ye8{bottom:506.515605pt;}
.y96{bottom:508.916585pt;}
.y181{bottom:512.406251pt;}
.yb6{bottom:512.583338pt;}
.y19c{bottom:514.744039pt;}
.y1cc{bottom:514.744457pt;}
.y161{bottom:516.114525pt;}
.y124{bottom:518.515592pt;}
.y5e{bottom:520.916657pt;}
.y1cb{bottom:530.702792pt;}
.y19b{bottom:530.707584pt;}
.y34{bottom:530.755189pt;}
.y105{bottom:532.916609pt;}
.y160{bottom:532.916613pt;}
.ye7{bottom:535.317693pt;}
.yb5{bottom:536.380212pt;}
.y95{bottom:537.713465pt;}
.y5d{bottom:537.713537pt;}
.y19a{bottom:546.665912pt;}
.y1ca{bottom:546.666329pt;}
.y123{bottom:547.317680pt;}
.y33{bottom:547.557277pt;}
.y15f{bottom:549.713493pt;}
.yf{bottom:549.895863pt;}
.yb4{bottom:553.182296pt;}
.y94{bottom:554.515553pt;}
.y5c{bottom:554.515620pt;}
.ye{bottom:561.656276pt;}
.y104{bottom:561.713489pt;}
.y180{bottom:561.838488pt;}
.y199{bottom:562.624247pt;}
.y1c9{bottom:562.624665pt;}
.y122{bottom:564.114560pt;}
.ye6{bottom:564.114573pt;}
.y32{bottom:564.354157pt;}
.y93{bottom:571.317641pt;}
.y5b{bottom:571.317704pt;}
.yd{bottom:573.416688pt;}
.yb3{bottom:576.984378pt;}
.y15e{bottom:578.515581pt;}
.y1c8{bottom:578.583000pt;}
.y198{bottom:578.587792pt;}
.y17f{bottom:578.635368pt;}
.y121{bottom:580.916648pt;}
.y31{bottom:581.156245pt;}
.yc{bottom:585.177101pt;}
.y92{bottom:588.114521pt;}
.y5a{bottom:588.114579pt;}
.y103{bottom:590.515577pt;}
.ye5{bottom:592.916661pt;}
.y197{bottom:594.546121pt;}
.y1c7{bottom:594.546537pt;}
.y17e{bottom:595.437456pt;}
.yb{bottom:596.937513pt;}
.y120{bottom:597.713528pt;}
.y30{bottom:597.958324pt;}
.yb2{bottom:600.781252pt;}
.y91{bottom:604.916609pt;}
.y59{bottom:604.916661pt;}
.y15d{bottom:607.317669pt;}
.ya{bottom:608.697926pt;}
.ye4{bottom:609.713499pt;}
.y196{bottom:610.504457pt;}
.y1c6{bottom:610.504873pt;}
.y17d{bottom:612.234336pt;}
.y11f{bottom:614.515616pt;}
.y2f{bottom:614.755204pt;}
.yb1{bottom:617.583336pt;}
.y102{bottom:619.317665pt;}
.y9{bottom:620.458338pt;}
.y90{bottom:621.713489pt;}
.y58{bottom:621.713499pt;}
.y195{bottom:626.462792pt;}
.y1c5{bottom:626.463208pt;}
.ye3{bottom:626.515587pt;}
.y17c{bottom:629.036424pt;}
.y11e{bottom:631.317704pt;}
.y2e{bottom:631.557287pt;}
.y8{bottom:632.218751pt;}
.y15c{bottom:636.114549pt;}
.y8f{bottom:638.515577pt;}
.y57{bottom:638.515587pt;}
.yb0{bottom:641.380211pt;}
.y194{bottom:642.426333pt;}
.y1c4{bottom:642.426747pt;}
.ye2{bottom:643.317675pt;}
.y17b{bottom:645.838512pt;}
.y101{bottom:648.114545pt;}
.y2d{bottom:648.354167pt;}
.y7{bottom:650.843749pt;}
.y24{bottom:654.843747pt;}
.y8e{bottom:655.317665pt;}
.y56{bottom:655.317675pt;}
.yaf{bottom:658.182294pt;}
.y193{bottom:658.384665pt;}
.y1c3{bottom:658.385082pt;}
.ye1{bottom:660.114555pt;}
.y11d{bottom:660.114560pt;}
.y17a{bottom:662.635392pt;}
.y100{bottom:664.916633pt;}
.y15b{bottom:664.916637pt;}
.y148{bottom:667.317704pt;}
.y6{bottom:667.911459pt;}
.y23{bottom:671.911459pt;}
.y8d{bottom:672.114545pt;}
.y192{bottom:674.343000pt;}
.y1c2{bottom:674.343417pt;}
.y2c{bottom:675.604167pt;}
.ye0{bottom:676.916643pt;}
.y79{bottom:679.437491pt;}
.yff{bottom:681.713513pt;}
.yae{bottom:681.984377pt;}
.y147{bottom:684.114545pt;}
.y55{bottom:684.114555pt;}
.y8c{bottom:688.916633pt;}
.y11c{bottom:688.916648pt;}
.y1c1{bottom:690.306959pt;}
.y179{bottom:691.437480pt;}
.y15a{bottom:693.713517pt;}
.ydf{bottom:693.713523pt;}
.y78{bottom:696.234371pt;}
.yfe{bottom:698.515601pt;}
.y146{bottom:700.916633pt;}
.y54{bottom:700.916643pt;}
.yce{bottom:700.916657pt;}
.y5{bottom:705.520828pt;}
.y11b{bottom:705.713528pt;}
.yad{bottom:705.781251pt;}
.y1c0{bottom:706.265286pt;}
.y191{bottom:707.686749pt;}
.y178{bottom:708.234360pt;}
.y159{bottom:710.515605pt;}
.yde{bottom:710.515611pt;}
.y77{bottom:713.036459pt;}
.yfd{bottom:715.317689pt;}
.y8b{bottom:717.713513pt;}
.y53{bottom:717.713523pt;}
.ycd{bottom:717.713537pt;}
.y1bf{bottom:722.223621pt;}
.y11a{bottom:722.515616pt;}
.y177{bottom:725.036448pt;}
.y2b{bottom:725.036459pt;}
.y158{bottom:727.317693pt;}
.ydd{bottom:727.317699pt;}
.yac{bottom:729.583333pt;}
.yfc{bottom:732.114569pt;}
.y8a{bottom:734.515601pt;}
.y52{bottom:734.515611pt;}
.y1be{bottom:738.187167pt;}
.y74{bottom:738.764959pt;}
.y4{bottom:738.906251pt;}
.y119{bottom:739.317704pt;}
.y76{bottom:740.286459pt;}
.y176{bottom:741.838536pt;}
.y157{bottom:744.114573pt;}
.ydc{bottom:744.114579pt;}
.y89{bottom:751.317689pt;}
.y51{bottom:751.317699pt;}
.y2a{bottom:752.286459pt;}
.y118{bottom:756.114584pt;}
.y175{bottom:758.635416pt;}
.yfb{bottom:760.916657pt;}
.y156{bottom:760.916661pt;}
.ycb{bottom:763.984373pt;}
.y88{bottom:768.114569pt;}
.y50{bottom:768.114579pt;}
.ydb{bottom:772.916657pt;}
.yca{bottom:778.921874pt;}
.y87{bottom:784.916657pt;}
.y4f{bottom:784.916661pt;}
.y174{bottom:785.885416pt;}
.yfa{bottom:789.713537pt;}
.y75{bottom:789.713541pt;}
.yc9{bottom:793.854169pt;}
.y3{bottom:799.447917pt;}
.y29{bottom:801.713537pt;}
.yc8{bottom:812.786459pt;}
.y28{bottom:818.515625pt;}
.y2{bottom:835.078128pt;}
.y1{bottom:849.078125pt;}
.ycc{bottom:866.427081pt;}
.y4e{bottom:866.427084pt;}
.h8{height:24.932359pt;}
.hf{height:28.438367pt;}
.h7{height:28.593750pt;}
.h5{height:30.024834pt;}
.h12{height:31.459293pt;}
.hc{height:31.659632pt;}
.h1{height:33.358212pt;}
.h4{height:38.126163pt;}
.h1a{height:40.747490pt;}
.h1b{height:40.747562pt;}
.h2{height:42.890625pt;}
.ha{height:42.890684pt;}
.h9{height:42.890700pt;}
.h13{height:42.890721pt;}
.hb{height:42.890737pt;}
.h16{height:42.890758pt;}
.h18{height:42.890780pt;}
.hd{height:42.890796pt;}
.h11{height:42.890817pt;}
.h14{height:42.890876pt;}
.h17{height:42.890950pt;}
.h15{height:42.890988pt;}
.h10{height:42.891084pt;}
.h6{height:46.616020pt;}
.h3{height:60.962105pt;}
.h1d{height:399.000000pt;}
.h19{height:728.880000pt;}
.h1c{height:750.120000pt;}
.he{height:751.328000pt;}
.h0{height:906.666667pt;}
.w1{width:483.781333pt;}
.w0{width:622.666667pt;}
.x0{left:0.000000pt;}
.xd{left:10.297416pt;}
.xe{left:40.000541pt;}
.x3{left:69.921875pt;}
.xb{left:73.921875pt;}
.x9{left:76.921875pt;}
.x5{left:83.921875pt;}
.x4{left:84.921875pt;}
.x8{left:114.312500pt;}
.xa{left:122.921875pt;}
.x1{left:124.718749pt;}
.x7{left:157.921875pt;}
.x6{left:196.921875pt;}
.xc{left:265.526046pt;}
.x2{left:281.812500pt;}
}




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