
    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_af0c5fe13a75ed2760f60ba1.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.146973;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_c82267ef5ff9130c96bc123f.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.120000;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_753f26c547781fd95a7485ea.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.120000;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_68f294f1a07ccc2f00ccb489.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.133000;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_e71c23443f8bbc4d77649c07.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.155762;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);}
.v0{vertical-align:0.000000px;}
.ls0{letter-spacing:0.000000px;}
.ls2{letter-spacing:0.555900px;}
.ls1{letter-spacing:0.561000px;}
.ls4{letter-spacing:0.627000px;}
.ls3{letter-spacing:0.693000px;}
.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;}
}
.ws0{word-spacing:-17.514000px;}
.wsa{word-spacing:-15.846000px;}
.ws9{word-spacing:-14.178000px;}
.ws4{word-spacing:-13.135500px;}
.ws6{word-spacing:-1.247400px;}
.ws7{word-spacing:0.000000px;}
.ws5{word-spacing:1.519560px;}
.wsb{word-spacing:1.735650px;}
.wsd{word-spacing:3.818430px;}
.ws1{word-spacing:6.106987px;}
.ws3{word-spacing:6.115440px;}
.ws2{word-spacing:6.119175px;}
.wsc{word-spacing:14.218800px;}
.ws8{word-spacing:42.569700px;}
._7{margin-left:-17.472042px;}
._1e{margin-left:-16.141821px;}
._23{margin-left:-15.126682px;}
._18{margin-left:-13.982082px;}
._12{margin-left:-11.876685px;}
._1f{margin-left:-10.780290px;}
._1d{margin-left:-9.699248px;}
._5{margin-left:-8.577885px;}
._19{margin-left:-7.201530px;}
._6{margin-left:-6.099075px;}
._d{margin-left:-4.932840px;}
._1{margin-left:-3.552255px;}
._4{margin-left:-2.471295px;}
._2{margin-left:-1.420433px;}
._0{width:2.000160px;}
._3{width:3.003210px;}
._c{width:4.246200px;}
._b{width:5.329800px;}
._a{width:6.402495px;}
._f{width:7.591101px;}
._8{width:8.649935px;}
._9{width:9.853050px;}
._14{width:11.605980px;}
._13{width:13.377855px;}
._11{width:14.534100px;}
._10{width:16.017533px;}
._24{width:17.517720px;}
._e{width:18.739313px;}
._21{width:20.144685px;}
._22{width:26.328295px;}
._20{width:28.381500px;}
._1a{width:54.732240px;}
._17{width:56.732400px;}
._1c{width:158.733000px;}
._1b{width:187.969680px;}
._15{width:463.136400px;}
._16{width:493.564860px;}
.fc0{color:rgb(35,31,32);}
.fs3{font-size:45.000000px;}
.fs2{font-size:47.250000px;}
.fs5{font-size:51.000000px;}
.fs4{font-size:54.000000px;}
.fs6{font-size:57.000000px;}
.fs1{font-size:63.000000px;}
.fs0{font-size:72.000000px;}
.y0{bottom:0.000000px;}
.y1b{bottom:102.501900px;}
.y37{bottom:104.577750px;}
.y6d{bottom:130.450800px;}
.y130{bottom:130.500825px;}
.ya8{bottom:130.720650px;}
.yf2{bottom:130.722150px;}
.y48{bottom:130.760550px;}
.y164{bottom:130.908150px;}
.y93{bottom:131.718075px;}
.y154{bottom:131.786250px;}
.y17f{bottom:132.173100px;}
.ycc{bottom:133.189650px;}
.y116{bottom:133.824750px;}
.y6c{bottom:144.700200px;}
.y92{bottom:145.967475px;}
.y17e{bottom:146.422500px;}
.yf1{bottom:148.742700px;}
.y12f{bottom:149.002350px;}
.ya7{bottom:149.241375px;}
.y47{bottom:149.262075px;}
.y153{bottom:150.287775px;}
.y180{bottom:150.573450px;}
.y115{bottom:152.326275px;}
.y167{bottom:154.569150px;}
.y91{bottom:160.216875px;}
.y17d{bottom:160.671900px;}
.y1a{bottom:161.284575px;}
.y46{bottom:163.061400px;}
.y6b{bottom:163.201725px;}
.y12e{bottom:163.251750px;}
.y152{bottom:164.537175px;}
.yf0{bottom:166.763250px;}
.y166{bottom:167.076450px;}
.ya6{bottom:167.762100px;}
.ycb{bottom:168.200895px;}
.y114{bottom:170.827800px;}
.y90{bottom:174.466275px;}
.y6a{bottom:177.451125px;}
.y19{bottom:180.783900px;}
.y45{bottom:181.112850px;}
.y151{bottom:183.038700px;}
.yef{bottom:184.783800px;}
.y165{bottom:185.077050px;}
.ya5{bottom:186.282825px;}
.yca{bottom:188.893245px;}
.y8f{bottom:192.967800px;}
.y44{bottom:194.913450px;}
.y69{bottom:195.952650px;}
.y12d{bottom:198.574335px;}
.yee{bottom:202.804350px;}
.ya4{bottom:204.803550px;}
.y113{bottom:207.775275px;}
.y43{bottom:208.714050px;}
.y18{bottom:208.787400px;}
.yc9{bottom:209.585595px;}
.y68{bottom:210.202050px;}
.y12c{bottom:216.356910px;}
.y150{bottom:217.742700px;}
.yed{bottom:220.824900px;}
.y42{bottom:222.513375px;}
.y67{bottom:224.451450px;}
.y112{bottom:225.805800px;}
.y17{bottom:228.287475px;}
.y8e{bottom:230.193525px;}
.yc8{bottom:230.277945px;}
.y12b{bottom:234.139485px;}
.ya3{bottom:236.076600px;}
.y41{bottom:236.312700px;}
.y14f{bottom:236.585475px;}
.y111{bottom:243.836325px;}
.y16{bottom:247.787550px;}
.y8d{bottom:249.903075px;}
.y40{bottom:250.112025px;}
.yc7{bottom:250.970295px;}
.yec{bottom:251.602650px;}
.y12a{bottom:251.922060px;}
.y14e{bottom:255.428250px;}
.ya2{bottom:256.098000px;}
.y66{bottom:261.022455px;}
.y110{bottom:261.866850px;}
.y3f{bottom:263.912625px;}
.y15{bottom:267.287625px;}
.y8c{bottom:269.612625px;}
.y129{bottom:269.704635px;}
.yeb{bottom:271.123200px;}
.yc6{bottom:271.662645px;}
.ya1{bottom:276.119400px;}
.y3e{bottom:277.711950px;}
.y10f{bottom:279.897375px;}
.y65{bottom:281.333655px;}
.y14d{bottom:282.775095px;}
.y14{bottom:286.787700px;}
.y128{bottom:287.487210px;}
.yea{bottom:290.643750px;}
.y3d{bottom:291.512550px;}
.yc5{bottom:292.354995px;}
.y8b{bottom:293.573100px;}
.ya0{bottom:296.140800px;}
.y10e{bottom:297.927900px;}
.y64{bottom:301.644855px;}
.y127{bottom:305.269785px;}
.y3c{bottom:305.313150px;}
.y13{bottom:306.287775px;}
.y14c{bottom:307.370295px;}
.yc4{bottom:313.047345px;}
.y8a{bottom:313.282650px;}
.y9f{bottom:316.162200px;}
.ye9{bottom:318.670530px;}
.y3b{bottom:319.113750px;}
.y126{bottom:323.052360px;}
.y12{bottom:325.787850px;}
.y63{bottom:326.206980px;}
.y14b{bottom:327.712995px;}
.y10d{bottom:328.712205px;}
.y3a{bottom:332.914350px;}
.y89{bottom:332.992200px;}
.yc3{bottom:333.739695px;}
.y9e{bottom:336.183600px;}
.ye8{bottom:336.691080px;}
.y125{bottom:340.834935px;}
.y11{bottom:345.287925px;}
.y62{bottom:346.516605px;}
.y14a{bottom:348.057270px;}
.y10c{bottom:348.543030px;}
.y39{bottom:350.965800px;}
.y88{bottom:352.701750px;}
.yc2{bottom:354.432045px;}
.ye7{bottom:354.711630px;}
.y124{bottom:358.617510px;}
.y9d{bottom:364.708275px;}
.y38{bottom:364.766400px;}
.y61{bottom:366.827805px;}
.y87{bottom:372.411300px;}
.y10b{bottom:372.626355px;}
.y149{bottom:372.652470px;}
.ye6{bottom:372.732180px;}
.yc1{bottom:375.124395px;}
.y123{bottom:376.400085px;}
.y10{bottom:381.796425px;}
.y9c{bottom:383.229000px;}
.y60{bottom:387.139005px;}
.ye5{bottom:390.752730px;}
.y86{bottom:392.120850px;}
.y10a{bottom:392.457180px;}
.y148{bottom:392.996745px;}
.yc0{bottom:395.816902px;}
.y122{bottom:398.434290px;}
.y35{bottom:399.563550px;}
.yf{bottom:401.295937px;}
.y9b{bottom:401.749582px;}
.y5f{bottom:407.449575px;}
.ye4{bottom:408.773708px;}
.y85{bottom:411.829455px;}
.y109{bottom:412.287532px;}
.y147{bottom:413.340233px;}
.y121{bottom:416.216722px;}
.y34{bottom:418.832730px;}
.y9a{bottom:420.270450px;}
.ybf{bottom:420.761280px;}
.ye3{bottom:426.794685px;}
.y5e{bottom:427.759830px;}
.ye{bottom:429.299753px;}
.y84{bottom:431.538375px;}
.y108{bottom:432.118200px;}
.y146{bottom:433.683720px;}
.y120{bottom:433.999155px;}
.y33{bottom:438.101910px;}
.ybe{bottom:441.453787px;}
.ye2{bottom:444.815662px;}
.y5d{bottom:448.070243px;}
.yd{bottom:448.799827px;}
.y83{bottom:451.247137px;}
.y99{bottom:451.547123px;}
.y11f{bottom:451.781588px;}
.y107{bottom:451.948867px;}
.y145{bottom:454.027365px;}
.y32{bottom:457.371090px;}
.ybd{bottom:462.146295px;}
.ye1{bottom:462.836640px;}
.y17c{bottom:463.287578px;}
.yc{bottom:468.299902px;}
.y5c{bottom:468.380655px;}
.y11e{bottom:469.563878px;}
.y82{bottom:470.955900px;}
.y98{bottom:471.567893px;}
.y106{bottom:471.779535px;}
.y144{bottom:474.370853px;}
.y31{bottom:476.640270px;}
.ye0{bottom:480.857618px;}
.y17b{bottom:482.787653px;}
.ybc{bottom:482.838645px;}
.y11d{bottom:487.346167px;}
.yb{bottom:487.799977px;}
.y5b{bottom:488.691068px;}
.y97{bottom:491.588505px;}
.y105{bottom:491.610202px;}
.y143{bottom:494.714340px;}
.y30{bottom:495.909450px;}
.ydf{bottom:498.878595px;}
.y81{bottom:499.168695px;}
.y17a{bottom:502.287728px;}
.ybb{bottom:503.531152px;}
.y11c{bottom:505.128600px;}
.ya{bottom:507.300052px;}
.y5a{bottom:509.001480px;}
.y104{bottom:511.440555px;}
.y96{bottom:511.609118px;}
.y142{bottom:515.057828px;}
.y2f{bottom:515.178630px;}
.yde{bottom:516.899572px;}
.y80{bottom:517.377487px;}
.y179{bottom:521.787803px;}
.y11b{bottom:522.911032px;}
.yba{bottom:524.223660px;}
.y9{bottom:526.800127px;}
.y59{bottom:529.311893px;}
.y103{bottom:531.271222px;}
.y95{bottom:531.629887px;}
.y2e{bottom:534.447810px;}
.ydd{bottom:534.920550px;}
.y141{bottom:535.401473px;}
.y7f{bottom:535.586280px;}
.y11a{bottom:540.693465px;}
.y178{bottom:541.287878px;}
.yb9{bottom:544.916167px;}
.y8{bottom:546.300202px;}
.y58{bottom:549.622305px;}
.y94{bottom:551.650500px;}
.y2d{bottom:553.716990px;}
.y102{bottom:555.353760px;}
.y140{bottom:555.744960px;}
.y7e{bottom:558.046988px;}
.y119{bottom:558.475755px;}
.y177{bottom:560.787953px;}
.yb8{bottom:565.608675px;}
.ydc{bottom:565.697378px;}
.y7{bottom:565.800277px;}
.y2c{bottom:572.986170px;}
.y163{bottom:573.258472px;}
.y57{bottom:574.184745px;}
.y101{bottom:575.184427px;}
.y13f{bottom:576.088448px;}
.y7d{bottom:576.255922px;}
.y118{bottom:576.258045px;}
.y176{bottom:580.288028px;}
.ydb{bottom:585.218400px;}
.y6{bottom:585.300352px;}
.yb7{bottom:586.301182px;}
.ya9{bottom:590.554950px;}
.y2b{bottom:592.255350px;}
.y162{bottom:592.894155px;}
.y7c{bottom:594.464573px;}
.y56{bottom:594.495158px;}
.y100{bottom:595.015095px;}
.y13e{bottom:596.432093px;}
.y175{bottom:599.788103px;}
.yb6{bottom:606.993532px;}
.y2a{bottom:611.524530px;}
.y161{bottom:612.529680px;}
.yda{bottom:613.243305px;}
.y117{bottom:614.525850px;}
.y55{bottom:614.805570px;}
.y13d{bottom:616.775580px;}
.y7b{bottom:616.925422px;}
.yff{bottom:619.097632px;}
.y174{bottom:619.288178px;}
.yb5{bottom:627.686040px;}
.y5{bottom:628.552372px;}
.y29{bottom:630.793710px;}
.yd9{bottom:631.264283px;}
.y160{bottom:632.165205px;}
.y54{bottom:635.115825px;}
.y7a{bottom:635.134215px;}
.y13c{bottom:637.119225px;}
.y173{bottom:638.788253px;}
.yfe{bottom:638.928300px;}
.y4{bottom:647.902350px;}
.yb4{bottom:648.378547px;}
.yd8{bottom:649.285260px;}
.y28{bottom:650.062890px;}
.y79{bottom:653.343007px;}
.y53{bottom:655.426395px;}
.y15f{bottom:656.052757px;}
.y13b{bottom:657.462713px;}
.y172{bottom:658.288328px;}
.yfd{bottom:658.758967px;}
.y3{bottom:667.252350px;}
.yd7{bottom:667.306238px;}
.yb3{bottom:669.071055px;}
.y27{bottom:669.332070px;}
.y78{bottom:671.551800px;}
.y52{bottom:675.736808px;}
.y15e{bottom:676.288200px;}
.y171{bottom:677.788403px;}
.y13a{bottom:677.806200px;}
.yfc{bottom:678.589635px;}
.yd6{bottom:685.327215px;}
.y26{bottom:688.601250px;}
.yb2{bottom:689.763562px;}
.y51{bottom:696.047220px;}
.y15d{bottom:696.523800px;}
.y170{bottom:697.288478px;}
.y139{bottom:698.149688px;}
.yfb{bottom:698.420302px;}
.y77{bottom:702.516750px;}
.yd5{bottom:703.348050px;}
.y25{bottom:707.870430px;}
.yb1{bottom:710.455912px;}
.y50{bottom:716.357633px;}
.y15c{bottom:716.759400px;}
.y16f{bottom:716.788553px;}
.yfa{bottom:718.250812px;}
.y138{bottom:718.493333px;}
.yd4{bottom:721.369028px;}
.y76{bottom:722.225512px;}
.y24{bottom:727.139610px;}
.y2{bottom:729.271890px;}
.yb0{bottom:731.148420px;}
.y16e{bottom:736.288628px;}
.y4f{bottom:736.668045px;}
.y15b{bottom:736.995000px;}
.yf9{bottom:738.081480px;}
.yd3{bottom:739.390005px;}
.y75{bottom:741.934275px;}
.y137{bottom:743.088690px;}
.y23{bottom:746.408790px;}
.y1{bottom:750.271950px;}
.yaf{bottom:751.840927px;}
.yd2{bottom:757.411125px;}
.yf8{bottom:757.912147px;}
.y16d{bottom:760.040730px;}
.y4e{bottom:761.230485px;}
.y74{bottom:761.643037px;}
.y136{bottom:762.832260px;}
.y22{bottom:765.677970px;}
.y15a{bottom:765.734430px;}
.yae{bottom:772.533435px;}
.yd1{bottom:775.432103px;}
.yf7{bottom:777.742815px;}
.y16c{bottom:779.540805px;}
.y4d{bottom:781.240860px;}
.y73{bottom:781.351800px;}
.y135{bottom:782.575673px;}
.y159{bottom:784.470045px;}
.y21{bottom:784.947150px;}
.yad{bottom:793.225942px;}
.yd0{bottom:793.453080px;}
.yf6{bottom:797.573482px;}
.y4c{bottom:801.251393px;}
.y134{bottom:802.319243px;}
.y158{bottom:803.205660px;}
.y16b{bottom:803.292750px;}
.y20{bottom:804.216330px;}
.y72{bottom:809.564580px;}
.ycf{bottom:811.474200px;}
.yac{bottom:813.918450px;}
.yf5{bottom:817.404150px;}
.y4b{bottom:821.261768px;}
.y157{bottom:821.941132px;}
.y133{bottom:822.062655px;}
.y16a{bottom:822.792825px;}
.y1f{bottom:823.485510px;}
.y71{bottom:827.773372px;}
.yab{bottom:834.610800px;}
.y156{bottom:840.676605px;}
.y4a{bottom:841.272143px;}
.y132{bottom:841.806068px;}
.yce{bottom:842.251005px;}
.y169{bottom:842.292900px;}
.y1e{bottom:842.754690px;}
.yf4{bottom:845.738490px;}
.y70{bottom:845.982165px;}
.y49{bottom:861.282518px;}
.y131{bottom:861.549638px;}
.ycd{bottom:861.772028px;}
.y168{bottom:861.792975px;}
.y1d{bottom:862.023870px;}
.y155{bottom:863.664135px;}
.yaa{bottom:863.807205px;}
.yf3{bottom:864.069120px;}
.y6f{bottom:864.190957px;}
.y1c{bottom:881.293050px;}
.y6e{bottom:882.399750px;}
.y36{bottom:925.591500px;}
.h8{height:40.230000px;}
.hb{height:45.594000px;}
.ha{height:46.257000px;}
.h9{height:50.466797px;}
.he{height:50.958000px;}
.hd{height:51.699000px;}
.hc{height:52.098000px;}
.h3{height:56.322000px;}
.h6{height:56.324250px;}
.h7{height:56.325000px;}
.h5{height:57.141000px;}
.h4{height:57.582000px;}
.h2{height:68.062500px;}
.h0{height:1020.472500px;}
.h1{height:1020.750000px;}
.w0{width:722.835015px;}
.w1{width:723.000000px;}
.x0{left:0.000000px;}
.x6{left:112.676505px;}
.x7{left:114.176700px;}
.x8{left:116.563800px;}
.x9{left:133.936365px;}
.xe{left:135.043650px;}
.x13{left:136.876950px;}
.xb{left:138.189000px;}
.x12{left:152.769300px;}
.x10{left:180.590850px;}
.xf{left:192.383783px;}
.x1{left:214.404000px;}
.x11{left:248.382375px;}
.x2{left:259.662480px;}
.x4{left:287.351250px;}
.xc{left:296.204100px;}
.x5{left:344.833395px;}
.xa{left:367.295700px;}
.x3{left:386.354400px;}
.xd{left:398.902950px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls2{letter-spacing:0.494133pt;}
.ls1{letter-spacing:0.498667pt;}
.ls4{letter-spacing:0.557333pt;}
.ls3{letter-spacing:0.616000pt;}
.ws0{word-spacing:-15.568000pt;}
.wsa{word-spacing:-14.085333pt;}
.ws9{word-spacing:-12.602667pt;}
.ws4{word-spacing:-11.676000pt;}
.ws6{word-spacing:-1.108800pt;}
.ws7{word-spacing:0.000000pt;}
.ws5{word-spacing:1.350720pt;}
.wsb{word-spacing:1.542800pt;}
.wsd{word-spacing:3.394160pt;}
.ws1{word-spacing:5.428433pt;}
.ws3{word-spacing:5.435947pt;}
.ws2{word-spacing:5.439267pt;}
.wsc{word-spacing:12.638933pt;}
.ws8{word-spacing:37.839733pt;}
._7{margin-left:-15.530704pt;}
._1e{margin-left:-14.348286pt;}
._23{margin-left:-13.445940pt;}
._18{margin-left:-12.428517pt;}
._12{margin-left:-10.557053pt;}
._1f{margin-left:-9.582480pt;}
._1d{margin-left:-8.621553pt;}
._5{margin-left:-7.624787pt;}
._19{margin-left:-6.401360pt;}
._6{margin-left:-5.421400pt;}
._d{margin-left:-4.384747pt;}
._1{margin-left:-3.157560pt;}
._4{margin-left:-2.196707pt;}
._2{margin-left:-1.262607pt;}
._0{width:1.777920pt;}
._3{width:2.669520pt;}
._c{width:3.774400pt;}
._b{width:4.737600pt;}
._a{width:5.691107pt;}
._f{width:6.747645pt;}
._8{width:7.688831pt;}
._9{width:8.758267pt;}
._14{width:10.316427pt;}
._13{width:11.891427pt;}
._11{width:12.919200pt;}
._10{width:14.237807pt;}
._24{width:15.571307pt;}
._e{width:16.657167pt;}
._21{width:17.906387pt;}
._22{width:23.402929pt;}
._20{width:25.228000pt;}
._1a{width:48.650880pt;}
._17{width:50.428800pt;}
._1c{width:141.096000pt;}
._1b{width:167.084160pt;}
._15{width:411.676800pt;}
._16{width:438.724320pt;}
.fs3{font-size:40.000000pt;}
.fs2{font-size:42.000000pt;}
.fs5{font-size:45.333333pt;}
.fs4{font-size:48.000000pt;}
.fs6{font-size:50.666667pt;}
.fs1{font-size:56.000000pt;}
.fs0{font-size:64.000000pt;}
.y0{bottom:0.000000pt;}
.y1b{bottom:91.112800pt;}
.y37{bottom:92.958000pt;}
.y6d{bottom:115.956267pt;}
.y130{bottom:116.000733pt;}
.ya8{bottom:116.196133pt;}
.yf2{bottom:116.197467pt;}
.y48{bottom:116.231600pt;}
.y164{bottom:116.362800pt;}
.y93{bottom:117.082733pt;}
.y154{bottom:117.143333pt;}
.y17f{bottom:117.487200pt;}
.ycc{bottom:118.390800pt;}
.y116{bottom:118.955333pt;}
.y6c{bottom:128.622400pt;}
.y92{bottom:129.748867pt;}
.y17e{bottom:130.153333pt;}
.yf1{bottom:132.215733pt;}
.y12f{bottom:132.446533pt;}
.ya7{bottom:132.659000pt;}
.y47{bottom:132.677400pt;}
.y153{bottom:133.589133pt;}
.y180{bottom:133.843067pt;}
.y115{bottom:135.401133pt;}
.y167{bottom:137.394800pt;}
.y91{bottom:142.415000pt;}
.y17d{bottom:142.819467pt;}
.y1a{bottom:143.364067pt;}
.y46{bottom:144.943467pt;}
.y6b{bottom:145.068200pt;}
.y12e{bottom:145.112667pt;}
.y152{bottom:146.255267pt;}
.yf0{bottom:148.234000pt;}
.y166{bottom:148.512400pt;}
.ya6{bottom:149.121867pt;}
.ycb{bottom:149.511907pt;}
.y114{bottom:151.846933pt;}
.y90{bottom:155.081133pt;}
.y6a{bottom:157.734333pt;}
.y19{bottom:160.696800pt;}
.y45{bottom:160.989200pt;}
.y151{bottom:162.701067pt;}
.yef{bottom:164.252267pt;}
.y165{bottom:164.512933pt;}
.ya5{bottom:165.584733pt;}
.yca{bottom:167.905107pt;}
.y8f{bottom:171.526933pt;}
.y44{bottom:173.256400pt;}
.y69{bottom:174.180133pt;}
.y12d{bottom:176.510520pt;}
.yee{bottom:180.270533pt;}
.ya4{bottom:182.047600pt;}
.y113{bottom:184.689133pt;}
.y43{bottom:185.523600pt;}
.y18{bottom:185.588800pt;}
.yc9{bottom:186.298307pt;}
.y68{bottom:186.846267pt;}
.y12c{bottom:192.317253pt;}
.y150{bottom:193.549067pt;}
.yed{bottom:196.288800pt;}
.y42{bottom:197.789667pt;}
.y67{bottom:199.512400pt;}
.y112{bottom:200.716267pt;}
.y17{bottom:202.922200pt;}
.y8e{bottom:204.616467pt;}
.yc8{bottom:204.691507pt;}
.y12b{bottom:208.123987pt;}
.ya3{bottom:209.845867pt;}
.y41{bottom:210.055733pt;}
.y14f{bottom:210.298200pt;}
.y111{bottom:216.743400pt;}
.y16{bottom:220.255600pt;}
.y8d{bottom:222.136067pt;}
.y40{bottom:222.321800pt;}
.yc7{bottom:223.084707pt;}
.yec{bottom:223.646800pt;}
.y12a{bottom:223.930720pt;}
.y14e{bottom:227.047333pt;}
.ya2{bottom:227.642667pt;}
.y66{bottom:232.019960pt;}
.y110{bottom:232.770533pt;}
.y3f{bottom:234.589000pt;}
.y15{bottom:237.589000pt;}
.y8c{bottom:239.655667pt;}
.y129{bottom:239.737453pt;}
.yeb{bottom:240.998400pt;}
.yc6{bottom:241.477907pt;}
.ya1{bottom:245.439467pt;}
.y3e{bottom:246.855067pt;}
.y10f{bottom:248.797667pt;}
.y65{bottom:250.074360pt;}
.y14d{bottom:251.355640pt;}
.y14{bottom:254.922400pt;}
.y128{bottom:255.544187pt;}
.yea{bottom:258.350000pt;}
.y3d{bottom:259.122267pt;}
.yc5{bottom:259.871107pt;}
.y8b{bottom:260.953867pt;}
.ya0{bottom:263.236267pt;}
.y10e{bottom:264.824800pt;}
.y64{bottom:268.128760pt;}
.y127{bottom:271.350920pt;}
.y3c{bottom:271.389467pt;}
.y13{bottom:272.255800pt;}
.y14c{bottom:273.218040pt;}
.yc4{bottom:278.264307pt;}
.y8a{bottom:278.473467pt;}
.y9f{bottom:281.033067pt;}
.ye9{bottom:283.262693pt;}
.y3b{bottom:283.656667pt;}
.y126{bottom:287.157653pt;}
.y12{bottom:289.589200pt;}
.y63{bottom:289.961760pt;}
.y14b{bottom:291.300440pt;}
.y10d{bottom:292.188627pt;}
.y3a{bottom:295.923867pt;}
.y89{bottom:295.993067pt;}
.yc3{bottom:296.657507pt;}
.y9e{bottom:298.829867pt;}
.ye8{bottom:299.280960pt;}
.y125{bottom:302.964387pt;}
.y11{bottom:306.922600pt;}
.y62{bottom:308.014760pt;}
.y14a{bottom:309.384240pt;}
.y10c{bottom:309.816027pt;}
.y39{bottom:311.969600pt;}
.y88{bottom:313.512667pt;}
.yc2{bottom:315.050707pt;}
.ye7{bottom:315.299227pt;}
.y124{bottom:318.771120pt;}
.y9d{bottom:324.185133pt;}
.y38{bottom:324.236800pt;}
.y61{bottom:326.069160pt;}
.y87{bottom:331.032267pt;}
.y10b{bottom:331.223427pt;}
.y149{bottom:331.246640pt;}
.ye6{bottom:331.317493pt;}
.yc1{bottom:333.443907pt;}
.y123{bottom:334.577853pt;}
.y10{bottom:339.374600pt;}
.y9c{bottom:340.648000pt;}
.y60{bottom:344.123560pt;}
.ye5{bottom:347.335760pt;}
.y86{bottom:348.551867pt;}
.y10a{bottom:348.850827pt;}
.y148{bottom:349.330440pt;}
.yc0{bottom:351.837247pt;}
.y122{bottom:354.163813pt;}
.y35{bottom:355.167600pt;}
.yf{bottom:356.707500pt;}
.y9b{bottom:357.110740pt;}
.y5f{bottom:362.177400pt;}
.ye4{bottom:363.354407pt;}
.y85{bottom:366.070627pt;}
.y109{bottom:366.477807pt;}
.y147{bottom:367.413540pt;}
.y121{bottom:369.970420pt;}
.y34{bottom:372.295760pt;}
.y9a{bottom:373.573733pt;}
.ybf{bottom:374.010027pt;}
.ye3{bottom:379.373053pt;}
.y5e{bottom:380.230960pt;}
.ye{bottom:381.599780pt;}
.y84{bottom:383.589667pt;}
.y108{bottom:384.105067pt;}
.y146{bottom:385.496640pt;}
.y120{bottom:385.777027pt;}
.y33{bottom:389.423920pt;}
.ybe{bottom:392.403367pt;}
.ye2{bottom:395.391700pt;}
.y5d{bottom:398.284660pt;}
.yd{bottom:398.933180pt;}
.y83{bottom:401.108567pt;}
.y99{bottom:401.375220pt;}
.y11f{bottom:401.583633pt;}
.y107{bottom:401.732327pt;}
.y145{bottom:403.579880pt;}
.y32{bottom:406.552080pt;}
.ybd{bottom:410.796707pt;}
.ye1{bottom:411.410347pt;}
.y17c{bottom:411.811180pt;}
.yc{bottom:416.266580pt;}
.y5c{bottom:416.338360pt;}
.y11e{bottom:417.390113pt;}
.y82{bottom:418.627467pt;}
.y98{bottom:419.171460pt;}
.y106{bottom:419.359587pt;}
.y144{bottom:421.662980pt;}
.y31{bottom:423.680240pt;}
.ye0{bottom:427.428993pt;}
.y17b{bottom:429.144580pt;}
.ybc{bottom:429.189907pt;}
.y11d{bottom:433.196593pt;}
.yb{bottom:433.599980pt;}
.y5b{bottom:434.392060pt;}
.y97{bottom:436.967560pt;}
.y105{bottom:436.986847pt;}
.y143{bottom:439.746080pt;}
.y30{bottom:440.808400pt;}
.ydf{bottom:443.447640pt;}
.y81{bottom:443.705507pt;}
.y17a{bottom:446.477980pt;}
.ybb{bottom:447.583247pt;}
.y11c{bottom:449.003200pt;}
.ya{bottom:450.933380pt;}
.y5a{bottom:452.445760pt;}
.y104{bottom:454.613827pt;}
.y96{bottom:454.763660pt;}
.y142{bottom:457.829180pt;}
.y2f{bottom:457.936560pt;}
.yde{bottom:459.466287pt;}
.y80{bottom:459.891100pt;}
.y179{bottom:463.811380pt;}
.y11b{bottom:464.809807pt;}
.yba{bottom:465.976587pt;}
.y9{bottom:468.266780pt;}
.y59{bottom:470.499460pt;}
.y103{bottom:472.241087pt;}
.y95{bottom:472.559900pt;}
.y2e{bottom:475.064720pt;}
.ydd{bottom:475.484933pt;}
.y141{bottom:475.912420pt;}
.y7f{bottom:476.076693pt;}
.y11a{bottom:480.616413pt;}
.y178{bottom:481.144780pt;}
.yb9{bottom:484.369927pt;}
.y8{bottom:485.600180pt;}
.y58{bottom:488.553160pt;}
.y94{bottom:490.356000pt;}
.y2d{bottom:492.192880pt;}
.y102{bottom:493.647787pt;}
.y140{bottom:493.995520pt;}
.y7e{bottom:496.041767pt;}
.y119{bottom:496.422893pt;}
.y177{bottom:498.478180pt;}
.yb8{bottom:502.763267pt;}
.ydc{bottom:502.842113pt;}
.y7{bottom:502.933580pt;}
.y2c{bottom:509.321040pt;}
.y163{bottom:509.563087pt;}
.y57{bottom:510.386440pt;}
.y101{bottom:511.275047pt;}
.y13f{bottom:512.078620pt;}
.y7d{bottom:512.227487pt;}
.y118{bottom:512.229373pt;}
.y176{bottom:515.811580pt;}
.ydb{bottom:520.194133pt;}
.y6{bottom:520.266980pt;}
.yb7{bottom:521.156607pt;}
.ya9{bottom:524.937733pt;}
.y2b{bottom:526.449200pt;}
.y162{bottom:527.017027pt;}
.y7c{bottom:528.412953pt;}
.y56{bottom:528.440140pt;}
.y100{bottom:528.902307pt;}
.y13e{bottom:530.161860pt;}
.y175{bottom:533.144980pt;}
.yb6{bottom:539.549807pt;}
.y2a{bottom:543.577360pt;}
.y161{bottom:544.470827pt;}
.yda{bottom:545.105160pt;}
.y117{bottom:546.245200pt;}
.y55{bottom:546.493840pt;}
.y13d{bottom:548.244960pt;}
.y7b{bottom:548.378153pt;}
.yff{bottom:550.309007pt;}
.y174{bottom:550.478380pt;}
.yb5{bottom:557.943147pt;}
.y5{bottom:558.713220pt;}
.y29{bottom:560.705520pt;}
.yd9{bottom:561.123807pt;}
.y160{bottom:561.924627pt;}
.y54{bottom:564.547400pt;}
.y7a{bottom:564.563747pt;}
.y13c{bottom:566.328200pt;}
.y173{bottom:567.811780pt;}
.yfe{bottom:567.936267pt;}
.y4{bottom:575.913200pt;}
.yb4{bottom:576.336487pt;}
.yd8{bottom:577.142453pt;}
.y28{bottom:577.833680pt;}
.y79{bottom:580.749340pt;}
.y53{bottom:582.601240pt;}
.y15f{bottom:583.158007pt;}
.y13b{bottom:584.411300pt;}
.y172{bottom:585.145180pt;}
.yfd{bottom:585.563527pt;}
.y3{bottom:593.113200pt;}
.yd7{bottom:593.161100pt;}
.yb3{bottom:594.729827pt;}
.y27{bottom:594.961840pt;}
.y78{bottom:596.934933pt;}
.y52{bottom:600.654940pt;}
.y15e{bottom:601.145067pt;}
.y171{bottom:602.478580pt;}
.y13a{bottom:602.494400pt;}
.yfc{bottom:603.190787pt;}
.yd6{bottom:609.179747pt;}
.y26{bottom:612.090000pt;}
.yb2{bottom:613.123167pt;}
.y51{bottom:618.708640pt;}
.y15d{bottom:619.132267pt;}
.y170{bottom:619.811980pt;}
.y139{bottom:620.577500pt;}
.yfb{bottom:620.818047pt;}
.y77{bottom:624.459333pt;}
.yd5{bottom:625.198267pt;}
.y25{bottom:629.218160pt;}
.yb1{bottom:631.516367pt;}
.y50{bottom:636.762340pt;}
.y15c{bottom:637.119467pt;}
.y16f{bottom:637.145380pt;}
.yfa{bottom:638.445167pt;}
.y138{bottom:638.660740pt;}
.yd4{bottom:641.216913pt;}
.y76{bottom:641.978233pt;}
.y24{bottom:646.346320pt;}
.y2{bottom:648.241680pt;}
.yb0{bottom:649.909707pt;}
.y16e{bottom:654.478780pt;}
.y4f{bottom:654.816040pt;}
.y15b{bottom:655.106667pt;}
.yf9{bottom:656.072427pt;}
.yd3{bottom:657.235560pt;}
.y75{bottom:659.497133pt;}
.y137{bottom:660.523280pt;}
.y23{bottom:663.474480pt;}
.y1{bottom:666.908400pt;}
.yaf{bottom:668.303047pt;}
.yd2{bottom:673.254333pt;}
.yf8{bottom:673.699687pt;}
.y16d{bottom:675.591760pt;}
.y4e{bottom:676.649320pt;}
.y74{bottom:677.016033pt;}
.y136{bottom:678.073120pt;}
.y22{bottom:680.602640pt;}
.y15a{bottom:680.652827pt;}
.yae{bottom:686.696387pt;}
.yd1{bottom:689.272980pt;}
.yf7{bottom:691.326947pt;}
.y16c{bottom:692.925160pt;}
.y4d{bottom:694.436320pt;}
.y73{bottom:694.534933pt;}
.y135{bottom:695.622820pt;}
.y159{bottom:697.306707pt;}
.y21{bottom:697.730800pt;}
.yad{bottom:705.089727pt;}
.yd0{bottom:705.291627pt;}
.yf6{bottom:708.954207pt;}
.y4c{bottom:712.223460pt;}
.y134{bottom:713.172660pt;}
.y158{bottom:713.960587pt;}
.y16b{bottom:714.038000pt;}
.y20{bottom:714.858960pt;}
.y72{bottom:719.612960pt;}
.ycf{bottom:721.310400pt;}
.yac{bottom:723.483067pt;}
.yf5{bottom:726.581467pt;}
.y4b{bottom:730.010460pt;}
.y157{bottom:730.614340pt;}
.y133{bottom:730.722360pt;}
.y16a{bottom:731.371400pt;}
.y1f{bottom:731.987120pt;}
.y71{bottom:735.798553pt;}
.yab{bottom:741.876267pt;}
.y156{bottom:747.268093pt;}
.y4a{bottom:747.797460pt;}
.y132{bottom:748.272060pt;}
.yce{bottom:748.667560pt;}
.y169{bottom:748.704800pt;}
.y1e{bottom:749.115280pt;}
.yf4{bottom:751.767547pt;}
.y70{bottom:751.984147pt;}
.y49{bottom:765.584460pt;}
.y131{bottom:765.821900pt;}
.ycd{bottom:766.019580pt;}
.y168{bottom:766.038200pt;}
.y1d{bottom:766.243440pt;}
.y155{bottom:767.701453pt;}
.yaa{bottom:767.828627pt;}
.yf3{bottom:768.061440pt;}
.y6f{bottom:768.169740pt;}
.y1c{bottom:783.371600pt;}
.y6e{bottom:784.355333pt;}
.y36{bottom:822.748000pt;}
.h8{height:35.760000pt;}
.hb{height:40.528000pt;}
.ha{height:41.117333pt;}
.h9{height:44.859375pt;}
.he{height:45.296000pt;}
.hd{height:45.954667pt;}
.hc{height:46.309333pt;}
.h3{height:50.064000pt;}
.h6{height:50.066000pt;}
.h7{height:50.066667pt;}
.h5{height:50.792000pt;}
.h4{height:51.184000pt;}
.h2{height:60.500000pt;}
.h0{height:907.086667pt;}
.h1{height:907.333333pt;}
.w0{width:642.520013pt;}
.w1{width:642.666667pt;}
.x0{left:0.000000pt;}
.x6{left:100.156893pt;}
.x7{left:101.490400pt;}
.x8{left:103.612267pt;}
.x9{left:119.054547pt;}
.xe{left:120.038800pt;}
.x13{left:121.668400pt;}
.xb{left:122.834667pt;}
.x12{left:135.794933pt;}
.x10{left:160.525200pt;}
.xf{left:171.007807pt;}
.x1{left:190.581333pt;}
.x11{left:220.784333pt;}
.x2{left:230.811093pt;}
.x4{left:255.423333pt;}
.xc{left:263.292533pt;}
.x5{left:306.518573pt;}
.xa{left:326.485067pt;}
.x3{left:343.426133pt;}
.xd{left:354.580400pt;}
}




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