
    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_9ceb0e1ae3766be87f84a1b2.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.910000;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_61033ae4824362770a13883a.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.209000;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_da095f0347b21f82ea054b5e.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.900000;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_0c460ba8e307c04356c5dd27.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.000000;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_f6c73d52c29047762f3aab6c.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.712000;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_1ca394650f5043d7cd25de07.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.000000;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_573d3dba37f5656814770c90.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.209000;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;}
.ls1{letter-spacing:26.241488px;}
.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;}
}
.ws7{word-spacing:-30.545332px;}
.ws35{word-spacing:-15.834556px;}
.ws79{word-spacing:-15.774781px;}
.ws21{word-spacing:-15.236800px;}
.ws4f{word-spacing:-15.177025px;}
.ws36{word-spacing:-14.878147px;}
.ws10{word-spacing:-14.639044px;}
.ws34{word-spacing:-14.585246px;}
.ws85{word-spacing:-14.579269px;}
.ws70{word-spacing:-14.399942px;}
.ws11{word-spacing:-14.280391px;}
.ws26{word-spacing:-13.682635px;}
.ws25{word-spacing:-13.449510px;}
.ws13{word-spacing:-13.383757px;}
.wsc{word-spacing:-13.264206px;}
.ws7a{word-spacing:-13.204430px;}
.ws76{word-spacing:-13.144654px;}
.ws12{word-spacing:-13.090856px;}
.ws3c{word-spacing:-13.084879px;}
.ws4c{word-spacing:-12.905552px;}
.ws3e{word-spacing:-12.845776px;}
.ws77{word-spacing:-12.786001px;}
.ws78{word-spacing:-12.666450px;}
.ws61{word-spacing:-12.606674px;}
.ws15{word-spacing:-12.546898px;}
.ws47{word-spacing:-12.487123px;}
.ws6b{word-spacing:-12.367572px;}
.ws5d{word-spacing:-12.307796px;}
.ws7b{word-spacing:-12.134447px;}
.ws3b{word-spacing:-11.710040px;}
.ws6a{word-spacing:-11.650264px;}
.ws4a{word-spacing:-11.530713px;}
.ws2c{word-spacing:-11.470938px;}
.ws5e{word-spacing:-11.297588px;}
.ws7d{word-spacing:-10.992733px;}
.ws51{word-spacing:-10.813406px;}
.ws80{word-spacing:-10.699832px;}
.ws3f{word-spacing:-10.693855px;}
.ws7f{word-spacing:-10.640057px;}
.ws39{word-spacing:-10.634079px;}
.ws73{word-spacing:-10.574304px;}
.ws19{word-spacing:-10.514528px;}
.ws50{word-spacing:-10.155874px;}
.ws7c{word-spacing:-10.102076px;}
.wse{word-spacing:-10.036323px;}
.ws1{word-spacing:-9.976548px;}
.wsf{word-spacing:-9.916772px;}
.ws22{word-spacing:-9.856996px;}
.ws3a{word-spacing:-9.803198px;}
.ws88{word-spacing:-9.677670px;}
.ws1a{word-spacing:-9.623872px;}
.ws81{word-spacing:-9.558118px;}
.ws84{word-spacing:-9.498343px;}
.ws67{word-spacing:-9.378792px;}
.ws1e{word-spacing:-9.319016px;}
.wsd{word-spacing:-9.205442px;}
.wsb{word-spacing:-9.145667px;}
.ws23{word-spacing:-9.026116px;}
.ws45{word-spacing:-8.960362px;}
.ws18{word-spacing:-8.900587px;}
.ws56{word-spacing:-8.727238px;}
.ws68{word-spacing:-8.667462px;}
.ws42{word-spacing:-8.661484px;}
.ws9{word-spacing:-8.541933px;}
.ws37{word-spacing:-8.482158px;}
.ws4b{word-spacing:-8.362606px;}
.ws1f{word-spacing:-8.302831px;}
.ws16{word-spacing:-8.243055px;}
.ws30{word-spacing:-8.183280px;}
.ws59{word-spacing:-8.063728px;}
.ws8{word-spacing:-8.003953px;}
.wsa{word-spacing:-7.830604px;}
.ws32{word-spacing:-7.764850px;}
.ws4d{word-spacing:-7.705075px;}
.ws6c{word-spacing:-7.651277px;}
.ws2b{word-spacing:-7.645299px;}
.ws31{word-spacing:-7.531726px;}
.ws20{word-spacing:-7.352399px;}
.ws7e{word-spacing:-7.226870px;}
.ws4e{word-spacing:-7.113296px;}
.ws63{word-spacing:-7.047543px;}
.ws38{word-spacing:-6.927992px;}
.ws2f{word-spacing:-6.868216px;}
.ws83{word-spacing:-6.688890px;}
.ws40{word-spacing:-6.509563px;}
.ws64{word-spacing:-6.455765px;}
.ws75{word-spacing:-6.330236px;}
.ws66{word-spacing:-6.091134px;}
.ws52{word-spacing:-6.031358px;}
.ws72{word-spacing:-5.977560px;}
.ws5c{word-spacing:-5.852031px;}
.ws3d{word-spacing:-5.493378px;}
.ws49{word-spacing:-5.373826px;}
.ws33{word-spacing:-5.314051px;}
.ws5b{word-spacing:-5.194500px;}
.ws55{word-spacing:-5.080926px;}
.ws1d{word-spacing:-5.015173px;}
.ws62{word-spacing:-4.895622px;}
.ws44{word-spacing:-4.835846px;}
.ws5{word-spacing:-4.776070px;}
.ws6{word-spacing:-4.363619px;}
.ws27{word-spacing:-4.058763px;}
.ws82{word-spacing:-3.998988px;}
.ws86{word-spacing:-3.819661px;}
.ws41{word-spacing:-3.759885px;}
.ws54{word-spacing:-3.700110px;}
.ws4{word-spacing:-3.461007px;}
.ws17{word-spacing:-3.401232px;}
.ws2a{word-spacing:-3.341456px;}
.ws87{word-spacing:-3.221905px;}
.ws29{word-spacing:-3.048556px;}
.ws71{word-spacing:-2.863251px;}
.ws48{word-spacing:-2.743700px;}
.ws69{word-spacing:-2.624149px;}
.ws6d{word-spacing:-2.570351px;}
.ws2d{word-spacing:-2.564373px;}
.ws60{word-spacing:-2.444822px;}
.ws58{word-spacing:-2.385046px;}
.ws2e{word-spacing:-2.331248px;}
.ws5f{word-spacing:-2.271473px;}
.ws1b{word-spacing:-2.145944px;}
.ws53{word-spacing:-2.086168px;}
.ws74{word-spacing:-1.966617px;}
.ws57{word-spacing:-1.607964px;}
.ws5a{word-spacing:-1.488412px;}
.ws1c{word-spacing:-1.129759px;}
.ws43{word-spacing:-0.950432px;}
.ws6e{word-spacing:-0.412452px;}
.ws6f{word-spacing:-0.358654px;}
.ws46{word-spacing:-0.292900px;}
.ws14{word-spacing:0.000000px;}
.ws65{word-spacing:0.304856px;}
.ws24{word-spacing:1.679694px;}
.ws3{word-spacing:16.067635px;}
.ws28{word-spacing:16.384492px;}
.ws0{word-spacing:32.227229px;}
.ws2{word-spacing:90.171234px;}
._1{margin-left:-8.056807px;}
._5f{margin-left:-5.977560px;}
._2{margin-left:-4.961375px;}
._14{margin-left:-3.849538px;}
._0{margin-left:-2.685602px;}
._4{margin-left:-1.494390px;}
._5{width:1.613941px;}
._4e{width:3.048556px;}
._52{width:14.107042px;}
._54{width:15.661207px;}
._53{width:16.976270px;}
._55{width:18.052231px;}
._49{width:19.905275px;}
._51{width:21.638767px;}
._4f{width:23.188633px;}
._59{width:24.802574px;}
._3{width:26.540366px;}
._4b{width:28.034756px;}
._4a{width:29.947576px;}
._5c{width:31.446265px;}
._50{width:32.577702px;}
._58{width:33.828690px;}
._62{width:34.908950px;}
._5b{width:37.129247px;}
._61{width:39.157318px;}
._5d{width:40.293054px;}
._4d{width:41.902696px;}
._57{width:44.652373px;}
._4c{width:46.146763px;}
._60{width:48.174834px;}
._5a{width:49.430122px;}
._63{width:51.940697px;}
._56{width:53.554638px;}
._5e{width:55.407682px;}
._8{width:71.718559px;}
._13{width:74.118278px;}
._a{width:110.203509px;}
._7{width:128.155863px;}
._47{width:355.031870px;}
._41{width:444.131327px;}
._3c{width:483.455895px;}
._18{width:526.053659px;}
._3b{width:552.743388px;}
._12{width:567.730774px;}
._2c{width:570.723841px;}
._2d{width:585.924728px;}
._31{width:619.207696px;}
._e{width:624.886352px;}
._36{width:626.404644px;}
._44{width:639.299404px;}
._22{width:647.517330px;}
._2b{width:648.690721px;}
._45{width:650.267004px;}
._21{width:653.576167px;}
._3d{width:664.991485px;}
._48{width:668.863135px;}
._40{width:676.367941px;}
._1d{width:680.736931px;}
._15{width:685.719806px;}
._42{width:697.331183px;}
._1b{width:701.153224px;}
._35{width:711.084912px;}
._34{width:716.080942px;}
._3a{width:728.943419px;}
._2a{width:730.395966px;}
._17{width:733.098409px;}
._9{width:736.014852px;}
._10{width:737.814092px;}
._39{width:739.362276px;}
._16{width:740.366503px;}
._2e{width:742.487933px;}
._d{width:754.287603px;}
._1e{width:759.865248px;}
._20{width:761.455274px;}
._33{width:764.175056px;}
._2f{width:769.040772px;}
._28{width:771.288332px;}
._3f{width:776.130146px;}
._43{width:778.150552px;}
._30{width:779.698735px;}
._32{width:785.049724px;}
._1a{width:786.309898px;}
._27{width:791.767403px;}
._29{width:793.803943px;}
._1c{width:796.394012px;}
._25{width:804.896469px;}
._3e{width:811.248206px;}
._f{width:813.796433px;}
._46{width:815.097744px;}
._26{width:817.650155px;}
._19{width:831.872523px;}
._37{width:833.115254px;}
._11{width:836.010775px;}
._23{width:841.475445px;}
._38{width:857.657260px;}
._c{width:864.681462px;}
._1f{width:880.129824px;}
._24{width:939.998502px;}
._b{width:949.789717px;}
._6{width:983.807914px;}
.fc0{color:rgb(0,0,0);}
.fs2{font-size:41.842800px;}
.fs1{font-size:59.775600px;}
.fs3{font-size:86.077200px;}
.fs0{font-size:103.292400px;}
.y0{bottom:0.000000px;}
.y3b{bottom:40.207500px;}
.y3a{bottom:85.039500px;}
.y39{bottom:102.972000px;}
.y6b{bottom:104.818500px;}
.y97{bottom:120.904500px;}
.y6a{bottom:122.751000px;}
.y38{bottom:130.876500px;}
.y37{bottom:148.809000px;}
.yc4{bottom:149.494500px;}
.y96{bottom:150.261000px;}
.y69{bottom:152.640000px;}
.y36{bottom:166.741500px;}
.yc3{bottom:167.427000px;}
.y95{bottom:168.193500px;}
.y68{bottom:170.572500px;}
.y94{bottom:186.126000px;}
.ye5{bottom:188.505000px;}
.y35{bottom:194.646000px;}
.yc2{bottom:196.017000px;}
.y67{bottom:200.460000px;}
.y93{bottom:204.058500px;}
.ye4{bottom:206.437500px;}
.y34{bottom:212.578500px;}
.yc1{bottom:213.951000px;}
.y66{bottom:218.392500px;}
.ye3{bottom:224.370000px;}
.yc0{bottom:231.883500px;}
.y92{bottom:233.415000px;}
.y33{bottom:240.483000px;}
.y65{bottom:248.280000px;}
.y91{bottom:251.347500px;}
.ye2{bottom:254.259000px;}
.y32{bottom:258.415500px;}
.ybf{bottom:260.473500px;}
.y64{bottom:266.214000px;}
.ye1{bottom:272.191500px;}
.y31{bottom:276.348000px;}
.ybe{bottom:278.406000px;}
.y90{bottom:280.704000px;}
.ye0{bottom:290.124000px;}
.y63{bottom:296.101500px;}
.ybd{bottom:296.338500px;}
.y8f{bottom:298.636500px;}
.y30{bottom:304.252500px;}
.y62{bottom:314.034000px;}
.ydf{bottom:320.011500px;}
.y2f{bottom:322.185000px;}
.ybc{bottom:324.928500px;}
.y8e{bottom:327.991500px;}
.yde{bottom:337.944000px;}
.y2e{bottom:340.117500px;}
.ybb{bottom:342.861000px;}
.y61{bottom:343.921500px;}
.y8d{bottom:345.925500px;}
.ydd{bottom:355.878000px;}
.y60{bottom:361.855500px;}
.y8c{bottom:363.858000px;}
.yba{bottom:371.451000px;}
.y2d{bottom:372.846000px;}
.ydc{bottom:385.765500px;}
.yb9{bottom:389.385000px;}
.y5f{bottom:391.743000px;}
.y8b{bottom:393.213000px;}
.ydb{bottom:403.698000px;}
.yb8{bottom:407.317500px;}
.y5e{bottom:409.675500px;}
.y8a{bottom:411.145500px;}
.y5d{bottom:427.608000px;}
.y89{bottom:429.079500px;}
.yda{bottom:433.585500px;}
.yb7{bottom:435.907500px;}
.y2c{bottom:438.433500px;}
.y2b{bottom:450.388500px;}
.yd9{bottom:451.518000px;}
.yb6{bottom:453.840000px;}
.y5c{bottom:457.495500px;}
.y88{bottom:458.434500px;}
.y2a{bottom:462.343500px;}
.yb5{bottom:471.772500px;}
.y29{bottom:474.298500px;}
.y5b{bottom:475.429500px;}
.y87{bottom:476.367000px;}
.yd8{bottom:481.407000px;}
.y28{bottom:486.253500px;}
.y5a{bottom:493.362000px;}
.y86{bottom:494.301000px;}
.y27{bottom:498.208500px;}
.yd7{bottom:499.339500px;}
.yb4{bottom:500.362500px;}
.y26{bottom:510.163500px;}
.yb3{bottom:518.295000px;}
.y25{bottom:522.118500px;}
.y59{bottom:523.249500px;}
.y85{bottom:523.656000px;}
.yd6{bottom:529.227000px;}
.y24{bottom:534.075000px;}
.y58{bottom:541.182000px;}
.y84{bottom:541.588500px;}
.y23{bottom:546.030000px;}
.yb2{bottom:546.885000px;}
.yd5{bottom:547.159500px;}
.y22{bottom:557.985000px;}
.y57{bottom:559.114500px;}
.yb1{bottom:564.819000px;}
.y21{bottom:569.940000px;}
.y83{bottom:570.945000px;}
.yd4{bottom:577.048500px;}
.y20{bottom:581.895000px;}
.yb0{bottom:582.751500px;}
.y82{bottom:588.877500px;}
.y56{bottom:589.003500px;}
.y1f{bottom:593.850000px;}
.yd3{bottom:594.981000px;}
.y1e{bottom:605.805000px;}
.y55{bottom:606.936000px;}
.yaf{bottom:611.341500px;}
.y1d{bottom:617.760000px;}
.y81{bottom:618.234000px;}
.yd2{bottom:624.868500px;}
.yae{bottom:629.274000px;}
.y1c{bottom:629.715000px;}
.y80{bottom:636.166500px;}
.y54{bottom:636.823500px;}
.y1b{bottom:641.671500px;}
.yd1{bottom:642.801000px;}
.y1a{bottom:653.626500px;}
.y7f{bottom:654.099000px;}
.y53{bottom:654.756000px;}
.yad{bottom:657.864000px;}
.y19{bottom:665.581500px;}
.y52{bottom:672.690000px;}
.yac{bottom:675.796500px;}
.y18{bottom:677.536500px;}
.y7e{bottom:683.455500px;}
.y17{bottom:689.491500px;}
.yd0{bottom:690.622500px;}
.yab{bottom:693.729000px;}
.y7d{bottom:701.388000px;}
.y16{bottom:701.446500px;}
.y51{bottom:702.577500px;}
.ycf{bottom:708.555000px;}
.y15{bottom:713.401500px;}
.y50{bottom:720.510000px;}
.yaa{bottom:722.319000px;}
.y14{bottom:725.356500px;}
.y7c{bottom:730.743000px;}
.y13{bottom:737.311500px;}
.y4f{bottom:738.442500px;}
.ya9{bottom:740.253000px;}
.y7b{bottom:748.677000px;}
.y12{bottom:749.268000px;}
.yce{bottom:756.375000px;}
.ya8{bottom:758.185500px;}
.y11{bottom:761.223000px;}
.y4e{bottom:768.330000px;}
.y10{bottom:773.178000px;}
.ycd{bottom:774.309000px;}
.y7a{bottom:778.032000px;}
.yf{bottom:785.133000px;}
.y4d{bottom:786.264000px;}
.ya7{bottom:786.775500px;}
.y79{bottom:795.964500px;}
.ye{bottom:797.088000px;}
.y4c{bottom:804.196500px;}
.ya6{bottom:804.708000px;}
.yd{bottom:809.043000px;}
.yc{bottom:820.998000px;}
.ycc{bottom:822.129000px;}
.ya5{bottom:822.640500px;}
.y78{bottom:825.321000px;}
.yb{bottom:832.953000px;}
.y4b{bottom:834.084000px;}
.y77{bottom:843.253500px;}
.ya{bottom:844.908000px;}
.ya4{bottom:851.230500px;}
.y4a{bottom:852.016500px;}
.y9{bottom:856.864500px;}
.y8{bottom:868.819500px;}
.ya3{bottom:869.163000px;}
.y49{bottom:869.949000px;}
.y76{bottom:872.610000px;}
.y7{bottom:880.774500px;}
.ya2{bottom:887.095500px;}
.ycb{bottom:887.883000px;}
.y75{bottom:890.542500px;}
.y6{bottom:892.729500px;}
.y48{bottom:899.838000px;}
.y5{bottom:904.684500px;}
.ya1{bottom:915.687000px;}
.y47{bottom:917.770500px;}
.y74{bottom:919.899000px;}
.y4{bottom:924.141000px;}
.ya0{bottom:933.619500px;}
.yca{bottom:935.703000px;}
.y73{bottom:937.831500px;}
.y3{bottom:943.116000px;}
.y46{bottom:947.658000px;}
.y9f{bottom:951.552000px;}
.yc9{bottom:953.635500px;}
.y45{bottom:965.590500px;}
.y72{bottom:967.186500px;}
.y9e{bottom:969.484500px;}
.yc8{bottom:983.524500px;}
.y71{bottom:985.120500px;}
.y9d{bottom:987.417000px;}
.y44{bottom:995.479500px;}
.yc7{bottom:1001.457000px;}
.y70{bottom:1003.053000px;}
.y43{bottom:1013.412000px;}
.y9c{bottom:1016.007000px;}
.y42{bottom:1031.344500px;}
.y6f{bottom:1032.408000px;}
.y9b{bottom:1033.939500px;}
.yc6{bottom:1049.277000px;}
.y6e{bottom:1050.340500px;}
.y41{bottom:1061.232000px;}
.y9a{bottom:1062.529500px;}
.y2{bottom:1067.217000px;}
.y40{bottom:1079.164500px;}
.y6d{bottom:1079.697000px;}
.y99{bottom:1080.463500px;}
.y3f{bottom:1097.098500px;}
.y6c{bottom:1097.629500px;}
.y98{bottom:1098.396000px;}
.y1{bottom:1100.094000px;}
.yc5{bottom:1115.031000px;}
.y3e{bottom:1126.986000px;}
.y3d{bottom:1144.918500px;}
.y3c{bottom:1162.851000px;}
.h4{height:29.331803px;}
.h5{height:31.423943px;}
.h7{height:44.891476px;}
.h3{height:56.009737px;}
.h6{height:60.340117px;}
.h2{height:73.131019px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x5{left:42.519000px;}
.x4{left:51.486000px;}
.x6{left:58.291500px;}
.x1{left:78.900000px;}
.x3{left:164.749500px;}
.x2{left:221.415000px;}
.x7{left:442.722000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls1{letter-spacing:23.325767pt;}
.ws7{word-spacing:-27.151406pt;}
.ws35{word-spacing:-14.075161pt;}
.ws79{word-spacing:-14.022027pt;}
.ws21{word-spacing:-13.543823pt;}
.ws4f{word-spacing:-13.490689pt;}
.ws36{word-spacing:-13.225019pt;}
.ws10{word-spacing:-13.012484pt;}
.ws34{word-spacing:-12.964663pt;}
.ws85{word-spacing:-12.959350pt;}
.ws70{word-spacing:-12.799948pt;}
.ws11{word-spacing:-12.693681pt;}
.ws26{word-spacing:-12.162342pt;}
.ws25{word-spacing:-11.955120pt;}
.ws13{word-spacing:-11.896673pt;}
.wsc{word-spacing:-11.790405pt;}
.ws7a{word-spacing:-11.737271pt;}
.ws76{word-spacing:-11.684137pt;}
.ws12{word-spacing:-11.636317pt;}
.ws3c{word-spacing:-11.631003pt;}
.ws4c{word-spacing:-11.471602pt;}
.ws3e{word-spacing:-11.418468pt;}
.ws77{word-spacing:-11.365334pt;}
.ws78{word-spacing:-11.259066pt;}
.ws61{word-spacing:-11.205932pt;}
.ws15{word-spacing:-11.152799pt;}
.ws47{word-spacing:-11.099665pt;}
.ws6b{word-spacing:-10.993397pt;}
.ws5d{word-spacing:-10.940263pt;}
.ws7b{word-spacing:-10.786175pt;}
.ws3b{word-spacing:-10.408924pt;}
.ws6a{word-spacing:-10.355791pt;}
.ws4a{word-spacing:-10.249523pt;}
.ws2c{word-spacing:-10.196389pt;}
.ws5e{word-spacing:-10.042301pt;}
.ws7d{word-spacing:-9.771318pt;}
.ws51{word-spacing:-9.611916pt;}
.ws80{word-spacing:-9.510962pt;}
.ws3f{word-spacing:-9.505649pt;}
.ws7f{word-spacing:-9.457828pt;}
.ws39{word-spacing:-9.452515pt;}
.ws73{word-spacing:-9.399381pt;}
.ws19{word-spacing:-9.346247pt;}
.ws50{word-spacing:-9.027444pt;}
.ws7c{word-spacing:-8.979623pt;}
.wse{word-spacing:-8.921176pt;}
.ws1{word-spacing:-8.868042pt;}
.wsf{word-spacing:-8.814908pt;}
.ws22{word-spacing:-8.761775pt;}
.ws3a{word-spacing:-8.713954pt;}
.ws88{word-spacing:-8.602373pt;}
.ws1a{word-spacing:-8.554553pt;}
.ws81{word-spacing:-8.496105pt;}
.ws84{word-spacing:-8.442971pt;}
.ws67{word-spacing:-8.336704pt;}
.ws1e{word-spacing:-8.283570pt;}
.wsd{word-spacing:-8.182615pt;}
.wsb{word-spacing:-8.129482pt;}
.ws23{word-spacing:-8.023214pt;}
.ws45{word-spacing:-7.964767pt;}
.ws18{word-spacing:-7.911633pt;}
.ws56{word-spacing:-7.757545pt;}
.ws68{word-spacing:-7.704411pt;}
.ws42{word-spacing:-7.699097pt;}
.ws9{word-spacing:-7.592830pt;}
.ws37{word-spacing:-7.539696pt;}
.ws4b{word-spacing:-7.433428pt;}
.ws1f{word-spacing:-7.380294pt;}
.ws16{word-spacing:-7.327160pt;}
.ws30{word-spacing:-7.274026pt;}
.ws59{word-spacing:-7.167759pt;}
.ws8{word-spacing:-7.114625pt;}
.wsa{word-spacing:-6.960537pt;}
.ws32{word-spacing:-6.902089pt;}
.ws4d{word-spacing:-6.848955pt;}
.ws6c{word-spacing:-6.801135pt;}
.ws2b{word-spacing:-6.795822pt;}
.ws31{word-spacing:-6.694867pt;}
.ws20{word-spacing:-6.535466pt;}
.ws7e{word-spacing:-6.423884pt;}
.ws4e{word-spacing:-6.322930pt;}
.ws63{word-spacing:-6.264483pt;}
.ws38{word-spacing:-6.158215pt;}
.ws2f{word-spacing:-6.105081pt;}
.ws83{word-spacing:-5.945680pt;}
.ws40{word-spacing:-5.786278pt;}
.ws64{word-spacing:-5.738458pt;}
.ws75{word-spacing:-5.626876pt;}
.ws66{word-spacing:-5.414341pt;}
.ws52{word-spacing:-5.361207pt;}
.ws72{word-spacing:-5.313387pt;}
.ws5c{word-spacing:-5.201806pt;}
.ws3d{word-spacing:-4.883002pt;}
.ws49{word-spacing:-4.776735pt;}
.ws33{word-spacing:-4.723601pt;}
.ws5b{word-spacing:-4.617333pt;}
.ws55{word-spacing:-4.516379pt;}
.ws1d{word-spacing:-4.457931pt;}
.ws62{word-spacing:-4.351664pt;}
.ws44{word-spacing:-4.298530pt;}
.ws5{word-spacing:-4.245396pt;}
.ws6{word-spacing:-3.878772pt;}
.ws27{word-spacing:-3.607790pt;}
.ws82{word-spacing:-3.554656pt;}
.ws86{word-spacing:-3.395254pt;}
.ws41{word-spacing:-3.342120pt;}
.ws54{word-spacing:-3.288986pt;}
.ws4{word-spacing:-3.076451pt;}
.ws17{word-spacing:-3.023317pt;}
.ws2a{word-spacing:-2.970183pt;}
.ws87{word-spacing:-2.863915pt;}
.ws29{word-spacing:-2.709827pt;}
.ws71{word-spacing:-2.545112pt;}
.ws48{word-spacing:-2.438844pt;}
.ws69{word-spacing:-2.332577pt;}
.ws6d{word-spacing:-2.284756pt;}
.ws2d{word-spacing:-2.279443pt;}
.ws60{word-spacing:-2.173175pt;}
.ws58{word-spacing:-2.120041pt;}
.ws2e{word-spacing:-2.072221pt;}
.ws5f{word-spacing:-2.019087pt;}
.ws1b{word-spacing:-1.907506pt;}
.ws53{word-spacing:-1.854372pt;}
.ws74{word-spacing:-1.748104pt;}
.ws57{word-spacing:-1.429301pt;}
.ws5a{word-spacing:-1.323033pt;}
.ws1c{word-spacing:-1.004230pt;}
.ws43{word-spacing:-0.844828pt;}
.ws6e{word-spacing:-0.366624pt;}
.ws6f{word-spacing:-0.318803pt;}
.ws46{word-spacing:-0.260356pt;}
.ws14{word-spacing:0.000000pt;}
.ws65{word-spacing:0.270983pt;}
.ws24{word-spacing:1.493062pt;}
.ws3{word-spacing:14.282342pt;}
.ws28{word-spacing:14.563993pt;}
.ws0{word-spacing:28.646426pt;}
.ws2{word-spacing:80.152208pt;}
._1{margin-left:-7.161606pt;}
._5f{margin-left:-5.313387pt;}
._2{margin-left:-4.410111pt;}
._14{margin-left:-3.421811pt;}
._0{margin-left:-2.387202pt;}
._4{margin-left:-1.328347pt;}
._5{width:1.434614pt;}
._4e{width:2.709827pt;}
._52{width:12.539593pt;}
._54{width:13.921073pt;}
._53{width:15.090018pt;}
._55{width:16.046428pt;}
._49{width:17.693578pt;}
._51{width:19.234460pt;}
._4f{width:20.612118pt;}
._59{width:22.046733pt;}
._3{width:23.591437pt;}
._4b{width:24.919783pt;}
._4a{width:26.620067pt;}
._5c{width:27.952236pt;}
._50{width:28.957957pt;}
._58{width:30.069947pt;}
._62{width:31.030178pt;}
._5b{width:33.003775pt;}
._61{width:34.806505pt;}
._5d{width:35.816048pt;}
._4d{width:37.246841pt;}
._57{width:39.690998pt;}
._4c{width:41.019345pt;}
._60{width:42.822075pt;}
._5a{width:43.937886pt;}
._63{width:46.169508pt;}
._56{width:47.604123pt;}
._5e{width:49.251273pt;}
._8{width:63.749830pt;}
._13{width:65.882914pt;}
._a{width:97.958675pt;}
._7{width:113.916323pt;}
._47{width:315.583885pt;}
._41{width:394.783401pt;}
._3c{width:429.738574pt;}
._18{width:467.603252pt;}
._3b{width:491.327456pt;}
._12{width:504.649577pt;}
._2c{width:507.310081pt;}
._2d{width:520.821981pt;}
._31{width:550.406841pt;}
._e{width:555.454535pt;}
._36{width:556.804128pt;}
._44{width:568.266137pt;}
._22{width:575.570960pt;}
._2b{width:576.613975pt;}
._45{width:578.015115pt;}
._21{width:580.956593pt;}
._3d{width:591.103543pt;}
._48{width:594.545009pt;}
._40{width:601.215947pt;}
._1d{width:605.099494pt;}
._15{width:609.528717pt;}
._42{width:619.849941pt;}
._1b{width:623.247310pt;}
._35{width:632.075477pt;}
._34{width:636.516393pt;}
._3a{width:647.949706pt;}
._2a{width:649.240859pt;}
._17{width:651.643030pt;}
._9{width:654.235424pt;}
._10{width:655.834749pt;}
._39{width:657.210912pt;}
._16{width:658.103558pt;}
._2e{width:659.989274pt;}
._d{width:670.477869pt;}
._1e{width:675.435776pt;}
._20{width:676.849133pt;}
._33{width:679.266717pt;}
._2f{width:683.591797pt;}
._28{width:685.589629pt;}
._3f{width:689.893463pt;}
._43{width:691.689379pt;}
._30{width:693.065542pt;}
._32{width:697.821977pt;}
._1a{width:698.942131pt;}
._27{width:703.793247pt;}
._29{width:705.603505pt;}
._1c{width:707.905789pt;}
._25{width:715.463528pt;}
._3e{width:721.109517pt;}
._f{width:723.374607pt;}
._46{width:724.531328pt;}
._26{width:726.800138pt;}
._19{width:739.442242pt;}
._37{width:740.546892pt;}
._11{width:743.120689pt;}
._23{width:747.978173pt;}
._38{width:762.362009pt;}
._c{width:768.605744pt;}
._1f{width:782.337621pt;}
._24{width:835.554224pt;}
._b{width:844.257526pt;}
._6{width:874.495923pt;}
.fs2{font-size:37.193600pt;}
.fs1{font-size:53.133867pt;}
.fs3{font-size:76.513067pt;}
.fs0{font-size:91.815467pt;}
.y0{bottom:0.000000pt;}
.y3b{bottom:35.740000pt;}
.y3a{bottom:75.590667pt;}
.y39{bottom:91.530667pt;}
.y6b{bottom:93.172000pt;}
.y97{bottom:107.470667pt;}
.y6a{bottom:109.112000pt;}
.y38{bottom:116.334667pt;}
.y37{bottom:132.274667pt;}
.yc4{bottom:132.884000pt;}
.y96{bottom:133.565333pt;}
.y69{bottom:135.680000pt;}
.y36{bottom:148.214667pt;}
.yc3{bottom:148.824000pt;}
.y95{bottom:149.505333pt;}
.y68{bottom:151.620000pt;}
.y94{bottom:165.445333pt;}
.ye5{bottom:167.560000pt;}
.y35{bottom:173.018667pt;}
.yc2{bottom:174.237333pt;}
.y67{bottom:178.186667pt;}
.y93{bottom:181.385333pt;}
.ye4{bottom:183.500000pt;}
.y34{bottom:188.958667pt;}
.yc1{bottom:190.178667pt;}
.y66{bottom:194.126667pt;}
.ye3{bottom:199.440000pt;}
.yc0{bottom:206.118667pt;}
.y92{bottom:207.480000pt;}
.y33{bottom:213.762667pt;}
.y65{bottom:220.693333pt;}
.y91{bottom:223.420000pt;}
.ye2{bottom:226.008000pt;}
.y32{bottom:229.702667pt;}
.ybf{bottom:231.532000pt;}
.y64{bottom:236.634667pt;}
.ye1{bottom:241.948000pt;}
.y31{bottom:245.642667pt;}
.ybe{bottom:247.472000pt;}
.y90{bottom:249.514667pt;}
.ye0{bottom:257.888000pt;}
.y63{bottom:263.201333pt;}
.ybd{bottom:263.412000pt;}
.y8f{bottom:265.454667pt;}
.y30{bottom:270.446667pt;}
.y62{bottom:279.141333pt;}
.ydf{bottom:284.454667pt;}
.y2f{bottom:286.386667pt;}
.ybc{bottom:288.825333pt;}
.y8e{bottom:291.548000pt;}
.yde{bottom:300.394667pt;}
.y2e{bottom:302.326667pt;}
.ybb{bottom:304.765333pt;}
.y61{bottom:305.708000pt;}
.y8d{bottom:307.489333pt;}
.ydd{bottom:316.336000pt;}
.y60{bottom:321.649333pt;}
.y8c{bottom:323.429333pt;}
.yba{bottom:330.178667pt;}
.y2d{bottom:331.418667pt;}
.ydc{bottom:342.902667pt;}
.yb9{bottom:346.120000pt;}
.y5f{bottom:348.216000pt;}
.y8b{bottom:349.522667pt;}
.ydb{bottom:358.842667pt;}
.yb8{bottom:362.060000pt;}
.y5e{bottom:364.156000pt;}
.y8a{bottom:365.462667pt;}
.y5d{bottom:380.096000pt;}
.y89{bottom:381.404000pt;}
.yda{bottom:385.409333pt;}
.yb7{bottom:387.473333pt;}
.y2c{bottom:389.718667pt;}
.y2b{bottom:400.345333pt;}
.yd9{bottom:401.349333pt;}
.yb6{bottom:403.413333pt;}
.y5c{bottom:406.662667pt;}
.y88{bottom:407.497333pt;}
.y2a{bottom:410.972000pt;}
.yb5{bottom:419.353333pt;}
.y29{bottom:421.598667pt;}
.y5b{bottom:422.604000pt;}
.y87{bottom:423.437333pt;}
.yd8{bottom:427.917333pt;}
.y28{bottom:432.225333pt;}
.y5a{bottom:438.544000pt;}
.y86{bottom:439.378667pt;}
.y27{bottom:442.852000pt;}
.yd7{bottom:443.857333pt;}
.yb4{bottom:444.766667pt;}
.y26{bottom:453.478667pt;}
.yb3{bottom:460.706667pt;}
.y25{bottom:464.105333pt;}
.y59{bottom:465.110667pt;}
.y85{bottom:465.472000pt;}
.yd6{bottom:470.424000pt;}
.y24{bottom:474.733333pt;}
.y58{bottom:481.050667pt;}
.y84{bottom:481.412000pt;}
.y23{bottom:485.360000pt;}
.yb2{bottom:486.120000pt;}
.yd5{bottom:486.364000pt;}
.y22{bottom:495.986667pt;}
.y57{bottom:496.990667pt;}
.yb1{bottom:502.061333pt;}
.y21{bottom:506.613333pt;}
.y83{bottom:507.506667pt;}
.yd4{bottom:512.932000pt;}
.y20{bottom:517.240000pt;}
.yb0{bottom:518.001333pt;}
.y82{bottom:523.446667pt;}
.y56{bottom:523.558667pt;}
.y1f{bottom:527.866667pt;}
.yd3{bottom:528.872000pt;}
.y1e{bottom:538.493333pt;}
.y55{bottom:539.498667pt;}
.yaf{bottom:543.414667pt;}
.y1d{bottom:549.120000pt;}
.y81{bottom:549.541333pt;}
.yd2{bottom:555.438667pt;}
.yae{bottom:559.354667pt;}
.y1c{bottom:559.746667pt;}
.y80{bottom:565.481333pt;}
.y54{bottom:566.065333pt;}
.y1b{bottom:570.374667pt;}
.yd1{bottom:571.378667pt;}
.y1a{bottom:581.001333pt;}
.y7f{bottom:581.421333pt;}
.y53{bottom:582.005333pt;}
.yad{bottom:584.768000pt;}
.y19{bottom:591.628000pt;}
.y52{bottom:597.946667pt;}
.yac{bottom:600.708000pt;}
.y18{bottom:602.254667pt;}
.y7e{bottom:607.516000pt;}
.y17{bottom:612.881333pt;}
.yd0{bottom:613.886667pt;}
.yab{bottom:616.648000pt;}
.y7d{bottom:623.456000pt;}
.y16{bottom:623.508000pt;}
.y51{bottom:624.513333pt;}
.ycf{bottom:629.826667pt;}
.y15{bottom:634.134667pt;}
.y50{bottom:640.453333pt;}
.yaa{bottom:642.061333pt;}
.y14{bottom:644.761333pt;}
.y7c{bottom:649.549333pt;}
.y13{bottom:655.388000pt;}
.y4f{bottom:656.393333pt;}
.ya9{bottom:658.002667pt;}
.y7b{bottom:665.490667pt;}
.y12{bottom:666.016000pt;}
.yce{bottom:672.333333pt;}
.ya8{bottom:673.942667pt;}
.y11{bottom:676.642667pt;}
.y4e{bottom:682.960000pt;}
.y10{bottom:687.269333pt;}
.ycd{bottom:688.274667pt;}
.y7a{bottom:691.584000pt;}
.yf{bottom:697.896000pt;}
.y4d{bottom:698.901333pt;}
.ya7{bottom:699.356000pt;}
.y79{bottom:707.524000pt;}
.ye{bottom:708.522667pt;}
.y4c{bottom:714.841333pt;}
.ya6{bottom:715.296000pt;}
.yd{bottom:719.149333pt;}
.yc{bottom:729.776000pt;}
.ycc{bottom:730.781333pt;}
.ya5{bottom:731.236000pt;}
.y78{bottom:733.618667pt;}
.yb{bottom:740.402667pt;}
.y4b{bottom:741.408000pt;}
.y77{bottom:749.558667pt;}
.ya{bottom:751.029333pt;}
.ya4{bottom:756.649333pt;}
.y4a{bottom:757.348000pt;}
.y9{bottom:761.657333pt;}
.y8{bottom:772.284000pt;}
.ya3{bottom:772.589333pt;}
.y49{bottom:773.288000pt;}
.y76{bottom:775.653333pt;}
.y7{bottom:782.910667pt;}
.ya2{bottom:788.529333pt;}
.ycb{bottom:789.229333pt;}
.y75{bottom:791.593333pt;}
.y6{bottom:793.537333pt;}
.y48{bottom:799.856000pt;}
.y5{bottom:804.164000pt;}
.ya1{bottom:813.944000pt;}
.y47{bottom:815.796000pt;}
.y74{bottom:817.688000pt;}
.y4{bottom:821.458667pt;}
.ya0{bottom:829.884000pt;}
.yca{bottom:831.736000pt;}
.y73{bottom:833.628000pt;}
.y3{bottom:838.325333pt;}
.y46{bottom:842.362667pt;}
.y9f{bottom:845.824000pt;}
.yc9{bottom:847.676000pt;}
.y45{bottom:858.302667pt;}
.y72{bottom:859.721333pt;}
.y9e{bottom:861.764000pt;}
.yc8{bottom:874.244000pt;}
.y71{bottom:875.662667pt;}
.y9d{bottom:877.704000pt;}
.y44{bottom:884.870667pt;}
.yc7{bottom:890.184000pt;}
.y70{bottom:891.602667pt;}
.y43{bottom:900.810667pt;}
.y9c{bottom:903.117333pt;}
.y42{bottom:916.750667pt;}
.y6f{bottom:917.696000pt;}
.y9b{bottom:919.057333pt;}
.yc6{bottom:932.690667pt;}
.y6e{bottom:933.636000pt;}
.y41{bottom:943.317333pt;}
.y9a{bottom:944.470667pt;}
.y2{bottom:948.637333pt;}
.y40{bottom:959.257333pt;}
.y6d{bottom:959.730667pt;}
.y99{bottom:960.412000pt;}
.y3f{bottom:975.198667pt;}
.y6c{bottom:975.670667pt;}
.y98{bottom:976.352000pt;}
.y1{bottom:977.861333pt;}
.yc5{bottom:991.138667pt;}
.y3e{bottom:1001.765333pt;}
.y3d{bottom:1017.705333pt;}
.y3c{bottom:1033.645333pt;}
.h4{height:26.072714pt;}
.h5{height:27.932394pt;}
.h7{height:39.903534pt;}
.h3{height:49.786433pt;}
.h6{height:53.635660pt;}
.h2{height:65.005350pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x5{left:37.794667pt;}
.x4{left:45.765333pt;}
.x6{left:51.814667pt;}
.x1{left:70.133333pt;}
.x3{left:146.444000pt;}
.x2{left:196.813333pt;}
.x7{left:393.530667pt;}
}




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