
    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_269cf653ca4ab7d66039a708.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.106934;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_e47edaa295b9cd727e14d064.woff2')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_a8fb077a73a7b10dc66d9ecc.woff2')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_bd5dcc7883c4fa346c619881.woff2')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_4f7907d74543f099b7334a5e.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_70a9f6d2529f18591187ecdc.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.732000;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_fc651d574f3d601e3a43b8fd.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_82d25701fe7d29785e70c776.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_9ee174c397bdde14d24a9962.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.905762;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_47d30cfecee0ee2b414514d1.woff2')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_27c4c09aa37975d08794d337.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.731445;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;}
.lsd{letter-spacing:0.017970px;}
.lsf{letter-spacing:0.017982px;}
.ls2{letter-spacing:0.018006px;}
.lse{letter-spacing:0.018018px;}
.ls11{letter-spacing:0.872130px;}
.ls10{letter-spacing:0.923432px;}
.lsb{letter-spacing:1.007965px;}
.ls12{letter-spacing:1.333846px;}
.ls7{letter-spacing:1.343953px;}
.lsc{letter-spacing:1.344041px;}
.ls1{letter-spacing:1.458000px;}
.ls4{letter-spacing:1.476000px;}
.lsa{letter-spacing:4.212000px;}
.ls5{letter-spacing:334.182351px;}
.ls8{letter-spacing:355.349613px;}
.ls9{letter-spacing:355.727600px;}
.ls6{letter-spacing:388.528457px;}
.ls3{letter-spacing:861.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;}
}
.ws5{word-spacing:-48.001464px;}
.ws1{word-spacing:-21.129671px;}
.ws4{word-spacing:-14.958000px;}
.ws14{word-spacing:-14.210587px;}
.ws13{word-spacing:-13.344407px;}
.ws6{word-spacing:-13.296406px;}
.wse{word-spacing:-12.977548px;}
.wsf{word-spacing:-12.641559px;}
.ws0{word-spacing:-11.633594px;}
.ws3{word-spacing:0.000000px;}
.ws10{word-spacing:120.451801px;}
.ws7{word-spacing:176.561845px;}
.ws8{word-spacing:223.852197px;}
.wsd{word-spacing:321.286500px;}
.ws2{word-spacing:334.512000px;}
.wsb{word-spacing:368.369159px;}
.wsc{word-spacing:372.527014px;}
.wsa{word-spacing:390.880375px;}
.ws9{word-spacing:417.546463px;}
.ws11{word-spacing:433.545469px;}
.ws12{word-spacing:821.247770px;}
._38{margin-left:-9.635695px;}
._2a{margin-left:-8.594605px;}
._37{margin-left:-7.369523px;}
._15{margin-left:-5.966131px;}
._5{margin-left:-4.747689px;}
._3{margin-left:-3.714456px;}
._4{margin-left:-2.546301px;}
._0{margin-left:-1.007965px;}
._1{width:1.133960px;}
._2{width:2.603909px;}
._9{width:3.932582px;}
._8{width:5.934876px;}
._c{width:7.091508px;}
._a{width:8.250209px;}
._d{width:9.495717px;}
._b{width:10.697124px;}
._11{width:11.779035px;}
._10{width:13.596170px;}
._13{width:16.318454px;}
._12{width:17.916288px;}
._6{width:18.995206px;}
._7{width:20.502328px;}
._34{width:21.590126px;}
._33{width:22.622511px;}
._2b{width:23.709867px;}
._35{width:27.636797px;}
._29{width:32.349653px;}
._18{width:33.433893px;}
._1b{width:37.935458px;}
._14{width:41.213781px;}
._19{width:63.399585px;}
._1a{width:76.860351px;}
._17{width:89.990827px;}
._36{width:115.685464px;}
._2c{width:125.770006px;}
._32{width:217.761073px;}
._16{width:244.761073px;}
._20{width:249.791683px;}
._1d{width:288.875815px;}
._1f{width:290.697361px;}
._f{width:353.484000px;}
._28{width:356.357578px;}
._21{width:406.230923px;}
._24{width:429.180057px;}
._2d{width:435.993508px;}
._23{width:437.648810px;}
._e{width:438.984000px;}
._27{width:442.812608px;}
._2f{width:458.509738px;}
._26{width:466.158803px;}
._22{width:482.680439px;}
._1e{width:486.981481px;}
._25{width:506.031625px;}
._1c{width:518.438384px;}
._2e{width:576.688464px;}
._31{width:584.851789px;}
._30{width:600.039650px;}
.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;}
.fs7{font-size:40.500000px;}
.fs0{font-size:41.998536px;}
.fs3{font-size:48.001464px;}
.fs8{font-size:51.301758px;}
.fs1{font-size:54.000000px;}
.fs5{font-size:70.198242px;}
.fs2{font-size:91.801758px;}
.y0{bottom:0.000000px;}
.y1e5{bottom:4.528547px;}
.y1b6{bottom:4.528914px;}
.y202{bottom:4.528922px;}
.y20b{bottom:4.529097px;}
.y1b5{bottom:22.482041px;}
.y201{bottom:22.482044px;}
.y1e4{bottom:22.487530px;}
.y20a{bottom:22.488086px;}
.y1e3{bottom:40.440657px;}
.y1b4{bottom:40.441030px;}
.y200{bottom:40.441032px;}
.y209{bottom:40.441213px;}
.y24{bottom:46.734370px;}
.y1e2{bottom:58.393773px;}
.y1ff{bottom:58.394150px;}
.y1b3{bottom:58.394157px;}
.y208{bottom:58.394340px;}
.y23{bottom:59.015622px;}
.y22{bottom:71.302734px;}
.y1fe{bottom:76.347278px;}
.y1b2{bottom:76.347282px;}
.y1e1{bottom:76.352762px;}
.y207{bottom:76.353328px;}
.y166{bottom:84.094500px;}
.y141{bottom:86.531229px;}
.ycd{bottom:86.882769px;}
.yf5{bottom:88.600500px;}
.y4c{bottom:90.000000px;}
.y80{bottom:90.960927px;}
.y187{bottom:91.078500px;}
.y142{bottom:92.560500px;}
.ya3{bottom:92.982404px;}
.y103{bottom:93.363257px;}
.y1e0{bottom:94.305889px;}
.y1b1{bottom:94.306262px;}
.y1fd{bottom:94.306266px;}
.y206{bottom:94.306453px;}
.y74{bottom:94.763650px;}
.y113{bottom:95.876943px;}
.y165{bottom:97.330062px;}
.ye2{bottom:97.511703px;}
.y4a{bottom:97.599598px;}
.y140{bottom:105.427719px;}
.ycc{bottom:105.785118px;}
.y186{bottom:106.582030px;}
.yf3{bottom:107.156250px;}
.ya2{bottom:107.677713px;}
.y1b7{bottom:109.032000px;}
.y7f{bottom:109.857417px;}
.y1df{bottom:112.259016px;}
.y1b0{bottom:112.259389px;}
.y1fc{bottom:112.259391px;}
.y205{bottom:112.259574px;}
.y102{bottom:112.265605px;}
.y73{bottom:113.665999px;}
.y112{bottom:114.773433px;}
.y164{bottom:116.232411px;}
.ye1{bottom:116.408193px;}
.y49{bottom:116.501947px;}
.y13f{bottom:124.330068px;}
.y185{bottom:124.535157px;}
.ycb{bottom:124.681608px;}
.yf2{bottom:128.455076px;}
.y7e{bottom:128.759760px;}
.y1de{bottom:130.212134px;}
.y1fb{bottom:130.212507px;}
.y1af{bottom:130.212516px;}
.y204{bottom:130.218562px;}
.ya1{bottom:130.253889px;}
.y101{bottom:131.162096px;}
.y72{bottom:132.568349px;}
.y163{bottom:135.128901px;}
.ye0{bottom:135.310542px;}
.y48{bottom:135.398421px;}
.y13e{bottom:143.232417px;}
.yca{bottom:143.583957px;}
.ya0{bottom:144.955057px;}
.yf1{bottom:145.253908px;}
.y111{bottom:147.175743px;}
.y7d{bottom:147.662061px;}
.y1fa{bottom:148.165634px;}
.y1ae{bottom:148.165641px;}
.y1dd{bottom:148.171123px;}
.y100{bottom:150.064445px;}
.y71{bottom:151.464838px;}
.y162{bottom:154.031223px;}
.y47{bottom:154.300770px;}
.y20{bottom:159.990165px;}
.y184{bottom:162.041016px;}
.y13d{bottom:162.128864px;}
.yc9{bottom:162.486306px;}
.yf4{bottom:165.427734px;}
.y110{bottom:166.072233px;}
.y1dc{bottom:166.124250px;}
.y1ad{bottom:166.124616px;}
.y1f9{bottom:166.124623px;}
.yf0{bottom:166.552734px;}
.y7c{bottom:166.558551px;}
.y9f{bottom:167.531233px;}
.ydf{bottom:167.706993px;}
.yff{bottom:168.966793px;}
.y70{bottom:170.367171px;}
.y161{bottom:172.927713px;}
.y46{bottom:173.203119px;}
.y1f{bottom:178.892514px;}
.y13c{bottom:181.031212px;}
.yc8{bottom:181.382796px;}
.y9e{bottom:182.232401px;}
.y1db{bottom:184.077368px;}
.y1ac{bottom:184.077743px;}
.y1f8{bottom:184.077750px;}
.y10f{bottom:184.974582px;}
.y7b{bottom:185.460900px;}
.yde{bottom:186.609342px;}
.y6f{bottom:189.263661px;}
.y160{bottom:191.830062px;}
.y45{bottom:192.099605px;}
.y1e{bottom:197.789004px;}
.y13b{bottom:199.927702px;}
.yc7{bottom:200.285145px;}
.y1ab{bottom:202.030871px;}
.y1da{bottom:202.036357px;}
.y10e{bottom:203.876931px;}
.y9d{bottom:204.802719px;}
.ydd{bottom:205.511691px;}
.y6e{bottom:208.166010px;}
.y15f{bottom:210.732411px;}
.y107{bottom:210.960931px;}
.y44{bottom:211.001943px;}
.y183{bottom:215.742187px;}
.y1d{bottom:216.691353px;}
.y7a{bottom:217.857390px;}
.y13a{bottom:218.830052px;}
.y9c{bottom:219.503886px;}
.y1d9{bottom:219.989484px;}
.y1aa{bottom:219.989859px;}
.y10d{bottom:222.773421px;}
.ydc{bottom:224.408181px;}
.y106{bottom:227.759764px;}
.y15e{bottom:229.628901px;}
.y43{bottom:229.898433px;}
.yc6{bottom:232.681635px;}
.y1c{bottom:235.587843px;}
.y139{bottom:237.732400px;}
.y1d8{bottom:237.942602px;}
.y1f7{bottom:237.942977px;}
.y1a9{bottom:237.942984px;}
.y6d{bottom:240.568359px;}
.y10c{bottom:241.675770px;}
.y9b{bottom:242.080063px;}
.ydb{bottom:243.310530px;}
.y182{bottom:244.488282px;}
.y105{bottom:244.558596px;}
.y42{bottom:248.800770px;}
.yc5{bottom:251.583984px;}
.y1b{bottom:254.490192px;}
.y1a8{bottom:255.896105px;}
.y1d7{bottom:255.901590px;}
.y138{bottom:256.628890px;}
.y9a{bottom:256.781230px;}
.y84{bottom:259.857423px;}
.y10b{bottom:260.572260px;}
.y15d{bottom:262.031244px;}
.yda{bottom:262.207020px;}
.y108{bottom:264.732422px;}
.y104{bottom:265.857422px;}
.y41{bottom:267.703119px;}
.y6c{bottom:271.218750px;}
.y1a{bottom:273.392541px;}
.y1d6{bottom:273.854717px;}
.y1a7{bottom:273.855093px;}
.y137{bottom:275.531239px;}
.y99{bottom:279.357407px;}
.y15c{bottom:280.927719px;}
.yd9{bottom:281.109369px;}
.y83{bottom:281.156249px;}
.yc4{bottom:282.240234px;}
.y1d5{bottom:291.807840px;}
.y1f6{bottom:291.808211px;}
.y1a6{bottom:291.808213px;}
.y19{bottom:292.289031px;}
.y10a{bottom:292.974609px;}
.y98{bottom:294.052716px;}
.y136{bottom:294.427729px;}
.y82{bottom:297.955081px;}
.y15b{bottom:299.830068px;}
.y40{bottom:300.099599px;}
.y1f5{bottom:309.761338px;}
.y1a5{bottom:309.761340px;}
.y1d4{bottom:309.766828px;}
.y18{bottom:311.191380px;}
.y97{bottom:316.628892px;}
.y85{bottom:318.128907px;}
.y15a{bottom:318.732417px;}
.y3f{bottom:319.001948px;}
.y81{bottom:319.253907px;}
.yea{bottom:323.103509px;}
.y109{bottom:323.630859px;}
.y135{bottom:326.829954px;}
.y6b{bottom:326.829992px;}
.y1d3{bottom:327.719945px;}
.y1f4{bottom:327.720326px;}
.y1a4{bottom:327.720329px;}
.y17{bottom:330.087870px;}
.y159{bottom:337.628895px;}
.yc3{bottom:337.851535px;}
.y3e{bottom:337.898427px;}
.y181{bottom:337.898438px;}
.y96{bottom:339.205069px;}
.ye9{bottom:339.902341px;}
.y1d2{bottom:345.673072px;}
.y1a3{bottom:345.673454px;}
.y134{bottom:345.732303px;}
.y6a{bottom:345.732341px;}
.y16{bottom:348.990219px;}
.y158{bottom:356.531244px;}
.ye8{bottom:356.707030px;}
.yc2{bottom:356.748026px;}
.y3d{bottom:356.800776px;}
.y95{bottom:361.781245px;}
.y1a2{bottom:363.626574px;}
.y1f3{bottom:363.626579px;}
.y1d1{bottom:363.632060px;}
.y133{bottom:364.628793px;}
.y69{bottom:364.628831px;}
.y15{bottom:367.892568px;}
.y180{bottom:368.554688px;}
.ye7{bottom:373.505862px;}
.yc1{bottom:375.650374px;}
.y3c{bottom:375.703115px;}
.y1d0{bottom:381.585188px;}
.y1a1{bottom:381.585563px;}
.y132{bottom:383.531142px;}
.y68{bottom:383.531180px;}
.y94{bottom:384.357422px;}
.y14{bottom:386.789058px;}
.y157{bottom:388.927724px;}
.y117{bottom:391.083982px;}
.yeb{bottom:393.679688px;}
.yc0{bottom:394.546865px;}
.y3b{bottom:394.599605px;}
.ye6{bottom:394.804688px;}
.y1cf{bottom:399.538313px;}
.y1a0{bottom:399.538681px;}
.y1f2{bottom:399.538688px;}
.y131{bottom:402.427632px;}
.y67{bottom:402.427670px;}
.y13{bottom:405.691407px;}
.y93{bottom:406.927739px;}
.y156{bottom:407.830073px;}
.y116{bottom:407.882814px;}
.ybf{bottom:413.449214px;}
.y3a{bottom:413.501948px;}
.y19f{bottom:417.491808px;}
.y1ce{bottom:417.497294px;}
.y130{bottom:421.329981px;}
.y66{bottom:421.330019px;}
.y92{bottom:421.628907px;}
.y17f{bottom:424.165956px;}
.y115{bottom:424.681647px;}
.y155{bottom:426.732400px;}
.y39{bottom:432.398438px;}
.y1cd{bottom:435.450422px;}
.y19e{bottom:435.450797px;}
.y12{bottom:436.347657px;}
.y12f{bottom:440.232330px;}
.y65{bottom:440.232368px;}
.y17e{bottom:443.068305px;}
.y118{bottom:444.861329px;}
.y154{bottom:445.628890px;}
.ybe{bottom:445.851477px;}
.y114{bottom:445.986328px;}
.y38{bottom:451.300776px;}
.y1cc{bottom:453.403547px;}
.y19d{bottom:453.403922px;}
.ya7{bottom:458.232423px;}
.y64{bottom:459.128858px;}
.y17d{bottom:461.964795px;}
.yce{bottom:462.222657px;}
.y153{bottom:464.531239px;}
.ybd{bottom:464.753826px;}
.y37{bottom:470.203119px;}
.y19c{bottom:471.357044px;}
.y1cb{bottom:471.362523px;}
.y12e{bottom:472.628820px;}
.ya6{bottom:475.037112px;}
.y63{bottom:478.031207px;}
.y17c{bottom:480.867144px;}
.y152{bottom:483.427729px;}
.ybc{bottom:483.656175px;}
.y36{bottom:489.099605px;}
.y1ca{bottom:489.315650px;}
.y19b{bottom:489.316032px;}
.y12d{bottom:491.531169px;}
.ya5{bottom:496.335938px;}
.y62{bottom:496.927697px;}
.y17b{bottom:499.763634px;}
.ybb{bottom:502.552665px;}
.y11{bottom:505.447266px;}
.y1c9{bottom:507.268778px;}
.y19a{bottom:507.269157px;}
.y35{bottom:508.001948px;}
.y12c{bottom:510.427659px;}
.y61{bottom:515.830046px;}
.y151{bottom:515.830073px;}
.yee{bottom:517.992189px;}
.y17a{bottom:518.665983px;}
.yba{bottom:521.455014px;}
.y10{bottom:522.246082px;}
.y199{bottom:525.222273px;}
.y1f1{bottom:525.222278px;}
.y1c8{bottom:525.227766px;}
.y34{bottom:526.898433px;}
.y12b{bottom:529.330008px;}
.y150{bottom:534.732417px;}
.yed{bottom:534.796878px;}
.y91{bottom:535.177686px;}
.y179{bottom:537.568332px;}
.yf{bottom:539.044908px;}
.y1c7{bottom:543.180887px;}
.y198{bottom:543.181262px;}
.y1f0{bottom:543.181266px;}
.y33{bottom:545.800770px;}
.y12a{bottom:548.232357px;}
.y60{bottom:548.232395px;}
.y14f{bottom:553.628890px;}
.yb9{bottom:553.857363px;}
.y90{bottom:554.080035px;}
.yef{bottom:554.970704px;}
.yec{bottom:556.095704px;}
.y178{bottom:556.464822px;}
.ye{bottom:560.343741px;}
.y1c6{bottom:561.134014px;}
.y1ef{bottom:561.134387px;}
.y197{bottom:561.134389px;}
.y32{bottom:564.703119px;}
.y129{bottom:567.128847px;}
.y5f{bottom:567.128884px;}
.y14e{bottom:572.531239px;}
.y8f{bottom:572.982384px;}
.y177{bottom:575.367171px;}
.y1c5{bottom:579.087141px;}
.y1ee{bottom:579.087514px;}
.y196{bottom:579.087516px;}
.yd{bottom:581.648433px;}
.y128{bottom:586.031196px;}
.y5e{bottom:586.031234px;}
.yb8{bottom:586.253853px;}
.y14d{bottom:591.427729px;}
.y8e{bottom:591.878874px;}
.y176{bottom:594.263661px;}
.y195{bottom:597.040628px;}
.y1ed{bottom:597.040641px;}
.y1c4{bottom:597.046125px;}
.y31{bottom:597.099599px;}
.yc{bottom:602.947266px;}
.y127{bottom:604.927686px;}
.y5d{bottom:604.927723px;}
.yb7{bottom:605.156202px;}
.y14c{bottom:610.330002px;}
.y8d{bottom:610.781223px;}
.y175{bottom:613.166010px;}
.y1c3{bottom:614.999243px;}
.y194{bottom:614.999616px;}
.y1ec{bottom:614.999625px;}
.y30{bottom:616.001948px;}
.y126{bottom:623.830035px;}
.y5c{bottom:623.830072px;}
.yb6{bottom:624.052692px;}
.y14b{bottom:629.232351px;}
.y8c{bottom:629.677713px;}
.y174{bottom:632.068359px;}
.y1c2{bottom:632.952371px;}
.y193{bottom:632.952743px;}
.y1eb{bottom:632.952748px;}
.y2f{bottom:634.898427px;}
.y125{bottom:642.732384px;}
.y5b{bottom:642.732417px;}
.yb5{bottom:642.955041px;}
.y14a{bottom:648.128841px;}
.y8b{bottom:648.580062px;}
.y192{bottom:650.905871px;}
.y1ea{bottom:650.905875px;}
.y1c1{bottom:650.911359px;}
.yd8{bottom:652.265614px;}
.yb{bottom:653.197279px;}
.y2e{bottom:653.800776px;}
.y124{bottom:661.628874px;}
.y5a{bottom:661.628901px;}
.yb4{bottom:661.857390px;}
.y173{bottom:662.718750px;}
.ya{bottom:666.427743px;}
.y149{bottom:667.031190px;}
.y8a{bottom:667.482411px;}
.y1c0{bottom:668.864477px;}
.y191{bottom:668.864859px;}
.yd7{bottom:671.162104px;}
.y2d{bottom:672.703119px;}
.y9{bottom:679.658207px;}
.y123{bottom:680.531223px;}
.y59{bottom:680.531229px;}
.yb3{bottom:680.753880px;}
.ya4{bottom:683.847657px;}
.y148{bottom:685.927680px;}
.y89{bottom:686.378901px;}
.y1bf{bottom:686.817605px;}
.y190{bottom:686.817977px;}
.yd6{bottom:690.064447px;}
.y2c{bottom:691.599604px;}
.y8{bottom:692.888671px;}
.y122{bottom:699.427713px;}
.y58{bottom:699.427719px;}
.yfe{bottom:699.427734px;}
.yb2{bottom:699.656229px;}
.y18f{bottom:704.771105px;}
.y1be{bottom:704.776593px;}
.y147{bottom:704.830029px;}
.yd5{bottom:708.966796px;}
.y2b{bottom:710.501948px;}
.y7{bottom:713.847657px;}
.yfd{bottom:718.330025px;}
.y172{bottom:718.330052px;}
.y57{bottom:718.330068px;}
.y21{bottom:718.347657px;}
.yb1{bottom:718.552719px;}
.y88{bottom:718.781250px;}
.y1bd{bottom:722.729718px;}
.y18e{bottom:722.730093px;}
.y146{bottom:723.732378px;}
.y2a{bottom:729.398438px;}
.y121{bottom:731.830062px;}
.yfc{bottom:737.232373px;}
.y171{bottom:737.232401px;}
.y56{bottom:737.232417px;}
.yb0{bottom:737.455068px;}
.y1bc{bottom:740.682831px;}
.y18d{bottom:740.683218px;}
.yd4{bottom:742.552728px;}
.y120{bottom:750.732411px;}
.yfb{bottom:756.128864px;}
.y145{bottom:756.128868px;}
.y170{bottom:756.128891px;}
.y55{bottom:756.128901px;}
.y6{bottom:756.158206px;}
.yaf{bottom:756.357417px;}
.yd3{bottom:757.253896px;}
.y1e9{bottom:758.636331px;}
.y18c{bottom:758.636338px;}
.y1bb{bottom:758.641820px;}
.y29{bottom:760.054688px;}
.y16b{bottom:761.137901px;}
.y11f{bottom:769.628901px;}
.yfa{bottom:775.031213px;}
.y16f{bottom:775.031240px;}
.y54{bottom:775.031244px;}
.y1ba{bottom:776.594947px;}
.y1e8{bottom:776.595320px;}
.y18b{bottom:776.595326px;}
.yd2{bottom:779.830072px;}
.y16a{bottom:780.034391px;}
.y11e{bottom:788.531217px;}
.yae{bottom:788.753907px;}
.y203{bottom:791.320500px;}
.y5{bottom:793.710931px;}
.y87{bottom:793.927703px;}
.y53{bottom:793.927730px;}
.y1b9{bottom:794.548074px;}
.y1e7{bottom:794.548447px;}
.y18a{bottom:794.548454px;}
.y169{bottom:798.936740px;}
.yd1{bottom:802.406249px;}
.y79{bottom:807.427703px;}
.y11d{bottom:807.427707px;}
.y16e{bottom:807.427730px;}
.y4e{bottom:811.927730px;}
.y1e6{bottom:812.501574px;}
.y189{bottom:812.501579px;}
.y1b8{bottom:812.507063px;}
.y86{bottom:812.830052px;}
.y28{bottom:815.666016px;}
.y168{bottom:817.833230px;}
.yad{bottom:822.345698px;}
.yd0{bottom:824.982425px;}
.y78{bottom:826.330052px;}
.y11c{bottom:826.330056px;}
.y52{bottom:826.330068px;}
.y16d{bottom:826.330072px;}
.y143{bottom:828.269578px;}
.y188{bottom:830.460563px;}
.y4d{bottom:830.830079px;}
.y4{bottom:831.269532px;}
.yf9{bottom:831.732401px;}
.yf6{bottom:832.229579px;}
.y167{bottom:836.735579px;}
.ycf{bottom:839.677734px;}
.yac{bottom:844.921874px;}
.y77{bottom:845.232401px;}
.y11b{bottom:845.232405px;}
.y51{bottom:845.232417px;}
.y16c{bottom:845.232421px;}
.y27{bottom:846.322266px;}
.yf8{bottom:850.628891px;}
.y76{bottom:864.128891px;}
.y11a{bottom:864.128895px;}
.y50{bottom:864.128901px;}
.yab{bottom:867.498051px;}
.yf7{bottom:869.531239px;}
.ye5{bottom:876.287108px;}
.yaa{bottom:882.193359px;}
.y75{bottom:883.031239px;}
.y119{bottom:883.031244px;}
.y4f{bottom:883.031250px;}
.ye4{bottom:893.085940px;}
.y3{bottom:899.378907px;}
.y26{bottom:901.927730px;}
.y144{bottom:901.927734px;}
.ya9{bottom:904.769536px;}
.ye3{bottom:914.384766px;}
.ya8{bottom:919.470704px;}
.y25{bottom:920.830079px;}
.y2{bottom:939.462894px;}
.y1{bottom:955.212891px;}
.y4b{bottom:974.730470px;}
.h8{height:28.048904px;}
.h10{height:30.576083px;}
.he{height:31.993163px;}
.h7{height:32.273438px;}
.h5{height:33.888685px;}
.h12{height:35.391704px;}
.ha{height:35.617086px;}
.h11{height:36.307617px;}
.h1{height:37.651031px;}
.h14{height:39.313477px;}
.h4{height:43.032562px;}
.h1f{height:45.991224px;}
.h21{height:45.991277px;}
.h2{height:48.410156px;}
.h17{height:48.410216px;}
.h9{height:48.410222px;}
.hc{height:48.410240px;}
.h1d{height:48.410264px;}
.hf{height:48.410282px;}
.h19{height:48.410288px;}
.h16{height:48.410312px;}
.h15{height:48.410330px;}
.hd{height:48.410348px;}
.h1c{height:48.410462px;}
.h13{height:48.410498px;}
.h1a{height:48.410654px;}
.h6{height:52.443023px;}
.h3{height:68.582368px;}
.h23{height:143.643000px;}
.h22{height:825.931500px;}
.h1b{height:842.403000px;}
.h20{height:843.885000px;}
.hb{height:844.963500px;}
.h18{height:846.363000px;}
.h1e{height:850.869000px;}
.h0{height:1020.000000px;}
.w1{width:544.254000px;}
.w0{width:700.500000px;}
.x0{left:0.000000px;}
.x17{left:11.584593px;}
.x16{left:45.000609px;}
.x3{left:78.662109px;}
.xa{left:83.162109px;}
.x8{left:86.537109px;}
.x14{left:90.246093px;}
.x5{left:94.412109px;}
.x4{left:95.537109px;}
.x15{left:123.662109px;}
.x9{left:138.287109px;}
.x1{left:140.308593px;}
.x7{left:146.601562px;}
.x10{left:168.146483px;}
.x6{left:182.162109px;}
.xb{left:250.154304px;}
.x2{left:300.164062px;}
.xe{left:343.160157px;}
.xc{left:363.287115px;}
.x11{left:466.781262px;}
.xd{left:495.632818px;}
.x13{left:576.794312px;}
.x12{left:583.534424px;}
.xf{left:600.363282px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls0{letter-spacing:0.000000pt;}
.lsd{letter-spacing:0.015973pt;}
.lsf{letter-spacing:0.015984pt;}
.ls2{letter-spacing:0.016005pt;}
.lse{letter-spacing:0.016016pt;}
.ls11{letter-spacing:0.775227pt;}
.ls10{letter-spacing:0.820828pt;}
.lsb{letter-spacing:0.895969pt;}
.ls12{letter-spacing:1.185641pt;}
.ls7{letter-spacing:1.194625pt;}
.lsc{letter-spacing:1.194703pt;}
.ls1{letter-spacing:1.296000pt;}
.ls4{letter-spacing:1.312000pt;}
.lsa{letter-spacing:3.744000pt;}
.ls5{letter-spacing:297.050979pt;}
.ls8{letter-spacing:315.866323pt;}
.ls9{letter-spacing:316.202311pt;}
.ls6{letter-spacing:345.358628pt;}
.ls3{letter-spacing:765.839111pt;}
.ws5{word-spacing:-42.667968pt;}
.ws1{word-spacing:-18.781930pt;}
.ws4{word-spacing:-13.296000pt;}
.ws14{word-spacing:-12.631633pt;}
.ws13{word-spacing:-11.861695pt;}
.ws6{word-spacing:-11.819027pt;}
.wse{word-spacing:-11.535598pt;}
.wsf{word-spacing:-11.236942pt;}
.ws0{word-spacing:-10.340973pt;}
.ws3{word-spacing:0.000000pt;}
.ws10{word-spacing:107.068268pt;}
.ws7{word-spacing:156.943863pt;}
.ws8{word-spacing:198.979731pt;}
.wsd{word-spacing:285.588000pt;}
.ws2{word-spacing:297.344000pt;}
.wsb{word-spacing:327.439253pt;}
.wsc{word-spacing:331.135124pt;}
.wsa{word-spacing:347.449222pt;}
.ws9{word-spacing:371.152412pt;}
.ws11{word-spacing:385.373751pt;}
.ws12{word-spacing:729.998018pt;}
._38{margin-left:-8.565063pt;}
._2a{margin-left:-7.639649pt;}
._37{margin-left:-6.550687pt;}
._15{margin-left:-5.303227pt;}
._5{margin-left:-4.220168pt;}
._3{margin-left:-3.301738pt;}
._4{margin-left:-2.263379pt;}
._0{margin-left:-0.895969pt;}
._1{width:1.007965pt;}
._2{width:2.314586pt;}
._9{width:3.495629pt;}
._8{width:5.275445pt;}
._c{width:6.303562pt;}
._a{width:7.333519pt;}
._d{width:8.440637pt;}
._b{width:9.508555pt;}
._11{width:10.470254pt;}
._10{width:12.085484pt;}
._13{width:14.505292pt;}
._12{width:15.925590pt;}
._6{width:16.884628pt;}
._7{width:18.224291pt;}
._34{width:19.191223pt;}
._33{width:20.108898pt;}
._2b{width:21.075437pt;}
._35{width:24.566041pt;}
._29{width:28.755247pt;}
._18{width:29.719016pt;}
._1b{width:33.720407pt;}
._14{width:36.634472pt;}
._19{width:56.355187pt;}
._1a{width:68.320312pt;}
._17{width:79.991846pt;}
._36{width:102.831524pt;}
._2c{width:111.795561pt;}
._32{width:193.565398pt;}
._16{width:217.565398pt;}
._20{width:222.037051pt;}
._1d{width:256.778502pt;}
._1f{width:258.397654pt;}
._f{width:314.208000pt;}
._28{width:316.762292pt;}
._21{width:361.094154pt;}
._24{width:381.493384pt;}
._2d{width:387.549785pt;}
._23{width:389.021165pt;}
._e{width:390.208000pt;}
._27{width:393.611207pt;}
._2f{width:407.564212pt;}
._26{width:414.363381pt;}
._22{width:429.049279pt;}
._1e{width:432.872427pt;}
._25{width:449.805889pt;}
._1c{width:460.834119pt;}
._2e{width:512.611968pt;}
._31{width:519.868257pt;}
._30{width:533.368577pt;}
.fs6{font-size:32.000000pt;}
.fs4{font-size:33.601563pt;}
.fs7{font-size:36.000000pt;}
.fs0{font-size:37.332032pt;}
.fs3{font-size:42.667968pt;}
.fs8{font-size:45.601563pt;}
.fs1{font-size:48.000000pt;}
.fs5{font-size:62.398437pt;}
.fs2{font-size:81.601563pt;}
.y0{bottom:0.000000pt;}
.y1e5{bottom:4.025375pt;}
.y1b6{bottom:4.025702pt;}
.y202{bottom:4.025708pt;}
.y20b{bottom:4.025864pt;}
.y1b5{bottom:19.984037pt;}
.y201{bottom:19.984039pt;}
.y1e4{bottom:19.988915pt;}
.y20a{bottom:19.989410pt;}
.y1e3{bottom:35.947251pt;}
.y1b4{bottom:35.947582pt;}
.y200{bottom:35.947584pt;}
.y209{bottom:35.947745pt;}
.y24{bottom:41.541662pt;}
.y1e2{bottom:51.905576pt;}
.y1ff{bottom:51.905912pt;}
.y1b3{bottom:51.905917pt;}
.y208{bottom:51.906080pt;}
.y23{bottom:52.458331pt;}
.y22{bottom:63.380208pt;}
.y1fe{bottom:67.864247pt;}
.y1b2{bottom:67.864251pt;}
.y1e1{bottom:67.869121pt;}
.y207{bottom:67.869625pt;}
.y166{bottom:74.750667pt;}
.y141{bottom:76.916648pt;}
.ycd{bottom:77.229128pt;}
.yf5{bottom:78.756000pt;}
.y4c{bottom:80.000000pt;}
.y80{bottom:80.854157pt;}
.y187{bottom:80.958667pt;}
.y142{bottom:82.276000pt;}
.ya3{bottom:82.651026pt;}
.y103{bottom:82.989561pt;}
.y1e0{bottom:83.827457pt;}
.y1b1{bottom:83.827788pt;}
.y1fd{bottom:83.827792pt;}
.y206{bottom:83.827959pt;}
.y74{bottom:84.234356pt;}
.y113{bottom:85.223949pt;}
.y165{bottom:86.515611pt;}
.ye2{bottom:86.677069pt;}
.y4a{bottom:86.755199pt;}
.y140{bottom:93.713528pt;}
.ycc{bottom:94.031216pt;}
.y186{bottom:94.739582pt;}
.yf3{bottom:95.250000pt;}
.ya2{bottom:95.713523pt;}
.y1b7{bottom:96.917333pt;}
.y7f{bottom:97.651037pt;}
.y1df{bottom:99.785792pt;}
.y1b0{bottom:99.786123pt;}
.y1fc{bottom:99.786125pt;}
.y205{bottom:99.786288pt;}
.y102{bottom:99.791649pt;}
.y73{bottom:101.036444pt;}
.y112{bottom:102.020829pt;}
.y164{bottom:103.317699pt;}
.ye1{bottom:103.473949pt;}
.y49{bottom:103.557287pt;}
.y13f{bottom:110.515616pt;}
.y185{bottom:110.697917pt;}
.ycb{bottom:110.828096pt;}
.yf2{bottom:114.182290pt;}
.y7e{bottom:114.453120pt;}
.y1de{bottom:115.744120pt;}
.y1fb{bottom:115.744451pt;}
.y1af{bottom:115.744459pt;}
.y204{bottom:115.749833pt;}
.ya1{bottom:115.781235pt;}
.y101{bottom:116.588529pt;}
.y72{bottom:117.838532pt;}
.y163{bottom:120.114579pt;}
.ye0{bottom:120.276037pt;}
.y48{bottom:120.354152pt;}
.y13e{bottom:127.317704pt;}
.yca{bottom:127.630184pt;}
.ya0{bottom:128.848939pt;}
.yf1{bottom:129.114585pt;}
.y111{bottom:130.822883pt;}
.y7d{bottom:131.255165pt;}
.y1fa{bottom:131.702786pt;}
.y1ae{bottom:131.702792pt;}
.y1dd{bottom:131.707665pt;}
.y100{bottom:133.390617pt;}
.y71{bottom:134.635412pt;}
.y162{bottom:136.916643pt;}
.y47{bottom:137.156240pt;}
.y20{bottom:142.213480pt;}
.y184{bottom:144.036459pt;}
.y13d{bottom:144.114545pt;}
.yc9{bottom:144.432272pt;}
.yf4{bottom:147.046875pt;}
.y110{bottom:147.619763pt;}
.y1dc{bottom:147.666000pt;}
.y1ad{bottom:147.666326pt;}
.y1f9{bottom:147.666331pt;}
.yf0{bottom:148.046875pt;}
.y7c{bottom:148.052045pt;}
.y9f{bottom:148.916652pt;}
.ydf{bottom:149.072883pt;}
.yff{bottom:150.192705pt;}
.y70{bottom:151.437485pt;}
.y161{bottom:153.713523pt;}
.y46{bottom:153.958328pt;}
.y1f{bottom:159.015568pt;}
.y13c{bottom:160.916633pt;}
.yc8{bottom:161.229152pt;}
.y9e{bottom:161.984356pt;}
.y1db{bottom:163.624328pt;}
.y1ac{bottom:163.624661pt;}
.y1f8{bottom:163.624667pt;}
.y10f{bottom:164.421851pt;}
.y7b{bottom:164.854133pt;}
.yde{bottom:165.874971pt;}
.y6f{bottom:168.234365pt;}
.y160{bottom:170.515611pt;}
.y45{bottom:170.755204pt;}
.y1e{bottom:175.812448pt;}
.y13b{bottom:177.713513pt;}
.yc7{bottom:178.031240pt;}
.y1ab{bottom:179.582996pt;}
.y1da{bottom:179.587873pt;}
.y10e{bottom:181.223939pt;}
.y9d{bottom:182.046861pt;}
.ydd{bottom:182.677059pt;}
.y6e{bottom:185.036453pt;}
.y15f{bottom:187.317699pt;}
.y107{bottom:187.520828pt;}
.y44{bottom:187.557283pt;}
.y183{bottom:191.770833pt;}
.y1d{bottom:192.614536pt;}
.y7a{bottom:193.651013pt;}
.y13a{bottom:194.515601pt;}
.y9c{bottom:195.114566pt;}
.y1d9{bottom:195.546208pt;}
.y1aa{bottom:195.546541pt;}
.y10d{bottom:198.020819pt;}
.ydc{bottom:199.473939pt;}
.y106{bottom:202.453123pt;}
.y15e{bottom:204.114579pt;}
.y43{bottom:204.354163pt;}
.yc6{bottom:206.828120pt;}
.y1c{bottom:209.411416pt;}
.y139{bottom:211.317689pt;}
.y1d8{bottom:211.504535pt;}
.y1f7{bottom:211.504869pt;}
.y1a9{bottom:211.504875pt;}
.y6d{bottom:213.838541pt;}
.y10c{bottom:214.822907pt;}
.y9b{bottom:215.182278pt;}
.ydb{bottom:216.276027pt;}
.y182{bottom:217.322917pt;}
.y105{bottom:217.385419pt;}
.y42{bottom:221.156240pt;}
.yc5{bottom:223.630208pt;}
.y1b{bottom:226.213504pt;}
.y1a8{bottom:227.463204pt;}
.y1d7{bottom:227.468080pt;}
.y138{bottom:228.114569pt;}
.y9a{bottom:228.249983pt;}
.y84{bottom:230.984376pt;}
.y10b{bottom:231.619787pt;}
.y15d{bottom:232.916661pt;}
.yda{bottom:233.072907pt;}
.y108{bottom:235.317708pt;}
.y104{bottom:236.317708pt;}
.y41{bottom:237.958328pt;}
.y6c{bottom:241.083333pt;}
.y1a{bottom:243.015592pt;}
.y1d6{bottom:243.426415pt;}
.y1a7{bottom:243.426749pt;}
.y137{bottom:244.916657pt;}
.y99{bottom:248.317695pt;}
.y15c{bottom:249.713528pt;}
.yd9{bottom:249.874995pt;}
.y83{bottom:249.916666pt;}
.yc4{bottom:250.880208pt;}
.y1d5{bottom:259.384747pt;}
.y1f6{bottom:259.385076pt;}
.y1a6{bottom:259.385078pt;}
.y19{bottom:259.812472pt;}
.y10a{bottom:260.421875pt;}
.y98{bottom:261.380192pt;}
.y136{bottom:261.713537pt;}
.y82{bottom:264.848961pt;}
.y15b{bottom:266.515616pt;}
.y40{bottom:266.755199pt;}
.y1f5{bottom:275.343412pt;}
.y1a5{bottom:275.343413pt;}
.y1d4{bottom:275.348292pt;}
.y18{bottom:276.614560pt;}
.y97{bottom:281.447904pt;}
.y85{bottom:282.781251pt;}
.y15a{bottom:283.317704pt;}
.y3f{bottom:283.557287pt;}
.y81{bottom:283.781251pt;}
.yea{bottom:287.203119pt;}
.y109{bottom:287.671875pt;}
.y135{bottom:290.515515pt;}
.y6b{bottom:290.515548pt;}
.y1d3{bottom:291.306618pt;}
.y1f4{bottom:291.306957pt;}
.y1a4{bottom:291.306959pt;}
.y17{bottom:293.411440pt;}
.y159{bottom:300.114573pt;}
.yc3{bottom:300.312476pt;}
.y3e{bottom:300.354157pt;}
.y181{bottom:300.354167pt;}
.y96{bottom:301.515617pt;}
.ye9{bottom:302.135414pt;}
.y1d2{bottom:307.264953pt;}
.y1a3{bottom:307.265292pt;}
.y134{bottom:307.317603pt;}
.y6a{bottom:307.317636pt;}
.y16{bottom:310.213528pt;}
.y158{bottom:316.916661pt;}
.ye8{bottom:317.072915pt;}
.yc2{bottom:317.109356pt;}
.y3d{bottom:317.156245pt;}
.y95{bottom:321.583329pt;}
.y1a2{bottom:323.223621pt;}
.y1f3{bottom:323.223625pt;}
.y1d1{bottom:323.228498pt;}
.y133{bottom:324.114483pt;}
.y69{bottom:324.114516pt;}
.y15{bottom:327.015616pt;}
.y180{bottom:327.604167pt;}
.ye7{bottom:332.005211pt;}
.yc1{bottom:333.911444pt;}
.y3c{bottom:333.958324pt;}
.y1d0{bottom:339.186833pt;}
.y1a1{bottom:339.187167pt;}
.y132{bottom:340.916571pt;}
.y68{bottom:340.916604pt;}
.y94{bottom:341.651042pt;}
.y14{bottom:343.812496pt;}
.y157{bottom:345.713532pt;}
.y117{bottom:347.630206pt;}
.yeb{bottom:349.937500pt;}
.yc0{bottom:350.708324pt;}
.y3b{bottom:350.755204pt;}
.ye6{bottom:350.937500pt;}
.y1cf{bottom:355.145167pt;}
.y1a0{bottom:355.145494pt;}
.y1f2{bottom:355.145500pt;}
.y131{bottom:357.713451pt;}
.y67{bottom:357.713484pt;}
.y13{bottom:360.614584pt;}
.y93{bottom:361.713546pt;}
.y156{bottom:362.515620pt;}
.y116{bottom:362.562502pt;}
.ybf{bottom:367.510412pt;}
.y3a{bottom:367.557287pt;}
.y19f{bottom:371.103829pt;}
.y1ce{bottom:371.108706pt;}
.y130{bottom:374.515539pt;}
.y66{bottom:374.515572pt;}
.y92{bottom:374.781251pt;}
.y17f{bottom:377.036405pt;}
.y115{bottom:377.494797pt;}
.y155{bottom:379.317689pt;}
.y39{bottom:384.354167pt;}
.y1cd{bottom:387.067041pt;}
.y19e{bottom:387.067375pt;}
.y12{bottom:387.864584pt;}
.y12f{bottom:391.317627pt;}
.y65{bottom:391.317660pt;}
.y17e{bottom:393.838493pt;}
.y118{bottom:395.432292pt;}
.y154{bottom:396.114569pt;}
.ybe{bottom:396.312424pt;}
.y114{bottom:396.432292pt;}
.y38{bottom:401.156245pt;}
.y1cc{bottom:403.025375pt;}
.y19d{bottom:403.025708pt;}
.ya7{bottom:407.317710pt;}
.y64{bottom:408.114540pt;}
.y17d{bottom:410.635373pt;}
.yce{bottom:410.864584pt;}
.y153{bottom:412.916657pt;}
.ybd{bottom:413.114512pt;}
.y37{bottom:417.958328pt;}
.y19c{bottom:418.984039pt;}
.y1cb{bottom:418.988910pt;}
.y12e{bottom:420.114507pt;}
.ya6{bottom:422.255211pt;}
.y63{bottom:424.916628pt;}
.y17c{bottom:427.437461pt;}
.y152{bottom:429.713537pt;}
.ybc{bottom:429.916600pt;}
.y36{bottom:434.755204pt;}
.y1ca{bottom:434.947245pt;}
.y19b{bottom:434.947584pt;}
.y12d{bottom:436.916595pt;}
.ya5{bottom:441.187500pt;}
.y62{bottom:441.713508pt;}
.y17b{bottom:444.234341pt;}
.ybb{bottom:446.713480pt;}
.y11{bottom:449.286459pt;}
.y1c9{bottom:450.905580pt;}
.y19a{bottom:450.905917pt;}
.y35{bottom:451.557287pt;}
.y12c{bottom:453.713475pt;}
.y61{bottom:458.515596pt;}
.y151{bottom:458.515620pt;}
.yee{bottom:460.437502pt;}
.y17a{bottom:461.036429pt;}
.yba{bottom:463.515568pt;}
.y10{bottom:464.218739pt;}
.y199{bottom:466.864243pt;}
.y1f1{bottom:466.864247pt;}
.y1c8{bottom:466.869125pt;}
.y34{bottom:468.354163pt;}
.y12b{bottom:470.515563pt;}
.y150{bottom:475.317704pt;}
.yed{bottom:475.375003pt;}
.y91{bottom:475.713499pt;}
.y179{bottom:477.838517pt;}
.yf{bottom:479.151029pt;}
.y1c7{bottom:482.827455pt;}
.y198{bottom:482.827788pt;}
.y1f0{bottom:482.827792pt;}
.y33{bottom:485.156240pt;}
.y12a{bottom:487.317651pt;}
.y60{bottom:487.317684pt;}
.y14f{bottom:492.114569pt;}
.yb9{bottom:492.317656pt;}
.y90{bottom:492.515587pt;}
.yef{bottom:493.307292pt;}
.yec{bottom:494.307292pt;}
.y178{bottom:494.635397pt;}
.ye{bottom:498.083325pt;}
.y1c6{bottom:498.785790pt;}
.y1ef{bottom:498.786121pt;}
.y197{bottom:498.786123pt;}
.y32{bottom:501.958328pt;}
.y129{bottom:504.114531pt;}
.y5f{bottom:504.114564pt;}
.y14e{bottom:508.916657pt;}
.y8f{bottom:509.317675pt;}
.y177{bottom:511.437485pt;}
.y1c5{bottom:514.744125pt;}
.y1ee{bottom:514.744457pt;}
.y196{bottom:514.744459pt;}
.yd{bottom:517.020829pt;}
.y128{bottom:520.916619pt;}
.y5e{bottom:520.916652pt;}
.yb8{bottom:521.114536pt;}
.y14d{bottom:525.713537pt;}
.y8e{bottom:526.114555pt;}
.y176{bottom:528.234365pt;}
.y195{bottom:530.702780pt;}
.y1ed{bottom:530.702792pt;}
.y1c4{bottom:530.707667pt;}
.y31{bottom:530.755199pt;}
.yc{bottom:535.953125pt;}
.y127{bottom:537.713499pt;}
.y5d{bottom:537.713532pt;}
.yb7{bottom:537.916624pt;}
.y14c{bottom:542.515557pt;}
.y8d{bottom:542.916643pt;}
.y175{bottom:545.036453pt;}
.y1c3{bottom:546.665994pt;}
.y194{bottom:546.666326pt;}
.y1ec{bottom:546.666333pt;}
.y30{bottom:547.557287pt;}
.y126{bottom:554.515587pt;}
.y5c{bottom:554.515620pt;}
.yb6{bottom:554.713504pt;}
.y14b{bottom:559.317645pt;}
.y8c{bottom:559.713523pt;}
.y174{bottom:561.838541pt;}
.y1c2{bottom:562.624329pt;}
.y193{bottom:562.624661pt;}
.y1eb{bottom:562.624665pt;}
.y2f{bottom:564.354157pt;}
.y125{bottom:571.317675pt;}
.y5b{bottom:571.317704pt;}
.yb5{bottom:571.515592pt;}
.y14a{bottom:576.114525pt;}
.y8b{bottom:576.515611pt;}
.y192{bottom:578.582996pt;}
.y1ea{bottom:578.583000pt;}
.y1c1{bottom:578.587875pt;}
.yd8{bottom:579.791657pt;}
.yb{bottom:580.619804pt;}
.y2e{bottom:581.156245pt;}
.y124{bottom:588.114555pt;}
.y5a{bottom:588.114579pt;}
.yb4{bottom:588.317680pt;}
.y173{bottom:589.083333pt;}
.ya{bottom:592.380216pt;}
.y149{bottom:592.916613pt;}
.y8a{bottom:593.317699pt;}
.y1c0{bottom:594.546202pt;}
.y191{bottom:594.546541pt;}
.yd7{bottom:596.588537pt;}
.y2d{bottom:597.958328pt;}
.y9{bottom:604.140629pt;}
.y123{bottom:604.916643pt;}
.y59{bottom:604.916648pt;}
.yb3{bottom:605.114560pt;}
.ya4{bottom:607.864584pt;}
.y148{bottom:609.713493pt;}
.y89{bottom:610.114579pt;}
.y1bf{bottom:610.504537pt;}
.y190{bottom:610.504869pt;}
.yd6{bottom:613.390620pt;}
.y2c{bottom:614.755204pt;}
.y8{bottom:615.901041pt;}
.y122{bottom:621.713523pt;}
.y58{bottom:621.713528pt;}
.yfe{bottom:621.713541pt;}
.yb2{bottom:621.916648pt;}
.y18f{bottom:626.463204pt;}
.y1be{bottom:626.468083pt;}
.y147{bottom:626.515581pt;}
.yd5{bottom:630.192708pt;}
.y2b{bottom:631.557287pt;}
.y7{bottom:634.531251pt;}
.yfd{bottom:638.515577pt;}
.y172{bottom:638.515601pt;}
.y57{bottom:638.515616pt;}
.y21{bottom:638.531251pt;}
.yb1{bottom:638.713528pt;}
.y88{bottom:638.916667pt;}
.y1bd{bottom:642.426416pt;}
.y18e{bottom:642.426749pt;}
.y146{bottom:643.317669pt;}
.y2a{bottom:648.354167pt;}
.y121{bottom:650.515611pt;}
.yfc{bottom:655.317665pt;}
.y171{bottom:655.317689pt;}
.y56{bottom:655.317704pt;}
.yb0{bottom:655.515616pt;}
.y1bc{bottom:658.384739pt;}
.y18d{bottom:658.385083pt;}
.yd4{bottom:660.046869pt;}
.y120{bottom:667.317699pt;}
.yfb{bottom:672.114545pt;}
.y145{bottom:672.114549pt;}
.y170{bottom:672.114569pt;}
.y55{bottom:672.114579pt;}
.y6{bottom:672.140627pt;}
.yaf{bottom:672.317704pt;}
.yd3{bottom:673.114574pt;}
.y1e9{bottom:674.343406pt;}
.y18c{bottom:674.343412pt;}
.y1bb{bottom:674.348284pt;}
.y29{bottom:675.604167pt;}
.y16b{bottom:676.567023pt;}
.y11f{bottom:684.114579pt;}
.yfa{bottom:688.916633pt;}
.y16f{bottom:688.916657pt;}
.y54{bottom:688.916661pt;}
.y1ba{bottom:690.306620pt;}
.y1e8{bottom:690.306951pt;}
.y18b{bottom:690.306957pt;}
.yd2{bottom:693.182286pt;}
.y16a{bottom:693.363903pt;}
.y11e{bottom:700.916637pt;}
.yae{bottom:701.114584pt;}
.y203{bottom:703.396000pt;}
.y5{bottom:705.520828pt;}
.y87{bottom:705.713513pt;}
.y53{bottom:705.713537pt;}
.y1b9{bottom:706.264955pt;}
.y1e7{bottom:706.265286pt;}
.y18a{bottom:706.265292pt;}
.y169{bottom:710.165991pt;}
.yd1{bottom:713.249999pt;}
.y79{bottom:717.713513pt;}
.y11d{bottom:717.713517pt;}
.y16e{bottom:717.713537pt;}
.y4e{bottom:721.713537pt;}
.y1e6{bottom:722.223621pt;}
.y189{bottom:722.223625pt;}
.y1b8{bottom:722.228500pt;}
.y86{bottom:722.515601pt;}
.y28{bottom:725.036459pt;}
.y168{bottom:726.962871pt;}
.yad{bottom:730.973953pt;}
.yd0{bottom:733.317711pt;}
.y78{bottom:734.515601pt;}
.y11c{bottom:734.515605pt;}
.y52{bottom:734.515616pt;}
.y16d{bottom:734.515620pt;}
.y143{bottom:736.239625pt;}
.y188{bottom:738.187167pt;}
.y4d{bottom:738.515625pt;}
.y4{bottom:738.906251pt;}
.yf9{bottom:739.317689pt;}
.yf6{bottom:739.759625pt;}
.y167{bottom:743.764959pt;}
.ycf{bottom:746.380208pt;}
.yac{bottom:751.041666pt;}
.y77{bottom:751.317689pt;}
.y11b{bottom:751.317693pt;}
.y51{bottom:751.317704pt;}
.y16c{bottom:751.317708pt;}
.y27{bottom:752.286459pt;}
.yf8{bottom:756.114569pt;}
.y76{bottom:768.114569pt;}
.y11a{bottom:768.114573pt;}
.y50{bottom:768.114579pt;}
.yab{bottom:771.109378pt;}
.yf7{bottom:772.916657pt;}
.ye5{bottom:778.921874pt;}
.yaa{bottom:784.171875pt;}
.y75{bottom:784.916657pt;}
.y119{bottom:784.916661pt;}
.y4f{bottom:784.916667pt;}
.ye4{bottom:793.854169pt;}
.y3{bottom:799.447917pt;}
.y26{bottom:801.713537pt;}
.y144{bottom:801.713541pt;}
.ya9{bottom:804.239588pt;}
.ye3{bottom:812.786459pt;}
.ya8{bottom:817.307292pt;}
.y25{bottom:818.515625pt;}
.y2{bottom:835.078128pt;}
.y1{bottom:849.078125pt;}
.y4b{bottom:866.427084pt;}
.h8{height:24.932359pt;}
.h10{height:27.178740pt;}
.he{height:28.438367pt;}
.h7{height:28.687500pt;}
.h5{height:30.123276pt;}
.h12{height:31.459293pt;}
.ha{height:31.659632pt;}
.h11{height:32.273438pt;}
.h1{height:33.467583pt;}
.h14{height:34.945312pt;}
.h4{height:38.251167pt;}
.h1f{height:40.881088pt;}
.h21{height:40.881135pt;}
.h2{height:43.031250pt;}
.h17{height:43.031303pt;}
.h9{height:43.031309pt;}
.hc{height:43.031325pt;}
.h1d{height:43.031346pt;}
.hf{height:43.031362pt;}
.h19{height:43.031367pt;}
.h16{height:43.031389pt;}
.h15{height:43.031405pt;}
.hd{height:43.031421pt;}
.h1c{height:43.031522pt;}
.h13{height:43.031554pt;}
.h1a{height:43.031693pt;}
.h6{height:46.616020pt;}
.h3{height:60.962105pt;}
.h23{height:127.682667pt;}
.h22{height:734.161333pt;}
.h1b{height:748.802667pt;}
.h20{height:750.120000pt;}
.hb{height:751.078667pt;}
.h18{height:752.322667pt;}
.h1e{height:756.328000pt;}
.h0{height:906.666667pt;}
.w1{width:483.781333pt;}
.w0{width:622.666667pt;}
.x0{left:0.000000pt;}
.x17{left:10.297416pt;}
.x16{left:40.000541pt;}
.x3{left:69.921875pt;}
.xa{left:73.921875pt;}
.x8{left:76.921875pt;}
.x14{left:80.218749pt;}
.x5{left:83.921875pt;}
.x4{left:84.921875pt;}
.x15{left:109.921874pt;}
.x9{left:122.921875pt;}
.x1{left:124.718749pt;}
.x7{left:130.312500pt;}
.x10{left:149.463540pt;}
.x6{left:161.921875pt;}
.xb{left:222.359382pt;}
.x2{left:266.812500pt;}
.xe{left:305.031251pt;}
.xc{left:322.921880pt;}
.x11{left:414.916677pt;}
.xd{left:440.562505pt;}
.x13{left:512.706055pt;}
.x12{left:518.697265pt;}
.xf{left:533.656251pt;}
}




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