
    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_aaaf75f5c8acf3dfbd6eb392.woff')format("woff");}.ff1{font-family:ff1;line-height:0.906000;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_8105215cc30ac4cc9b7e6ec4.woff')format("woff");}.ff2{font-family:ff2;line-height:0.919000;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_745d432c53e24c529fb09954.woff')format("woff");}.ff3{font-family:ff3;line-height:0.812000;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_33df94dca07dd8cce151ab3c.woff')format("woff");}.ff4{font-family:ff4;line-height:0.666000;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_4763fc54d6474101f2e9d748.woff')format("woff");}.ff5{font-family:ff5;line-height:0.705000;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_a52ac9c312f91217f8680c6a.woff')format("woff");}.ff6{font-family:ff6;line-height:0.664000;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_2e29b32f2a94b7687c39ca76.woff')format("woff");}.ff7{font-family:ff7;line-height:0.711000;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);}
.v2{vertical-align:-16.878000px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:21.696000px;}
.v1{vertical-align:23.748000px;}
.lsa{letter-spacing:0.000000px;}
.lsb{letter-spacing:0.458387px;}
.ls8{letter-spacing:0.464387px;}
.lse{letter-spacing:2.964877px;}
.ls6{letter-spacing:2.984915px;}
.lsf{letter-spacing:2.986766px;}
.ls3{letter-spacing:2.987108px;}
.lsd{letter-spacing:2.988017px;}
.ls4{letter-spacing:2.989492px;}
.ls7{letter-spacing:2.991113px;}
.ls5{letter-spacing:20.922538px;}
.ls2{letter-spacing:23.017650px;}
.ls9{letter-spacing:23.906525px;}
.lsc{letter-spacing:23.912525px;}
.ls1{letter-spacing:46.904915px;}
.ls0{letter-spacing:46.910915px;}
.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;}
}
.ws2{word-spacing:-16.438350px;}
.ws2f{word-spacing:-14.920027px;}
.ws7{word-spacing:-11.955150px;}
.ws3{word-spacing:-3.872237px;}
.ws14{word-spacing:0.000000px;}
.ws2e{word-spacing:0.019961px;}
.ws8{word-spacing:2.450800px;}
.ws30{word-spacing:3.108331px;}
.ws16{word-spacing:3.743636px;}
.ws20{word-spacing:3.751096px;}
.ws22{word-spacing:3.766494px;}
.ws2b{word-spacing:3.789639px;}
.ws33{word-spacing:4.124516px;}
.ws32{word-spacing:4.782048px;}
.wsa{word-spacing:4.782060px;}
.ws31{word-spacing:5.379840px;}
.ws6{word-spacing:5.929889px;}
.ws5{word-spacing:5.950414px;}
.ws9{word-spacing:5.977560px;}
.ws1{word-spacing:6.575340px;}
.ws2d{word-spacing:9.420062px;}
.ws2c{word-spacing:9.477948px;}
.wsb{word-spacing:9.803223px;}
.ws0{word-spacing:10.759680px;}
.wsc{word-spacing:11.333482px;}
.wse{word-spacing:13.890216px;}
.wsf{word-spacing:13.892899px;}
.ws10{word-spacing:13.893248px;}
.ws18{word-spacing:14.016412px;}
.ws1a{word-spacing:14.017648px;}
.ws19{word-spacing:14.019120px;}
.ws1b{word-spacing:14.026056px;}
.ws24{word-spacing:14.145118px;}
.ws25{word-spacing:14.146366px;}
.ws26{word-spacing:14.147851px;}
.ws4{word-spacing:22.947937px;}
.ws11{word-spacing:82.596100px;}
.ws13{word-spacing:83.099215px;}
.wsd{word-spacing:83.318677px;}
.ws1c{word-spacing:83.346508px;}
.ws12{word-spacing:83.826193px;}
.ws1e{word-spacing:83.859572px;}
.ws17{word-spacing:84.075650px;}
.ws27{word-spacing:84.111840px;}
.ws1d{word-spacing:84.593202px;}
.ws29{word-spacing:84.634141px;}
.ws23{word-spacing:84.847677px;}
.ws28{word-spacing:85.374548px;}
.ws15{word-spacing:150.232099px;}
.ws21{word-spacing:151.149401px;}
.ws2a{word-spacing:152.078217px;}
.ws1f{word-spacing:156.795800px;}
._4{margin-left:-7.302812px;}
._3{margin-left:-5.260272px;}
._2{margin-left:-3.945204px;}
._60{margin-left:-2.922295px;}
._0{margin-left:-1.811945px;}
._1{width:2.960465px;}
._2c{width:18.721340px;}
._5a{width:19.926597px;}
._15{width:26.961740px;}
._16{width:28.211332px;}
._4e{width:29.351956px;}
._2e{width:56.154535px;}
._3e{width:57.232392px;}
._3f{width:62.493254px;}
._61{width:68.108640px;}
._30{width:75.170249px;}
._43{width:76.304267px;}
._e{width:89.543955px;}
._1e{width:90.740983px;}
._24{width:91.892834px;}
._19{width:93.895706px;}
._7{width:94.955588px;}
._1a{width:96.236052px;}
._a{width:97.269970px;}
._9{width:99.270952px;}
._1b{width:100.688975px;}
._6{width:102.641407px;}
._33{width:104.478948px;}
._d{width:105.774144px;}
._c{width:107.274881px;}
._4b{width:108.420235px;}
._48{width:109.423483px;}
._b{width:110.463200px;}
._1c{width:112.544177px;}
._3a{width:113.849122px;}
._11{width:118.164595px;}
._21{width:119.853890px;}
._52{width:122.162779px;}
._f{width:145.958456px;}
._1d{width:147.814946px;}
._37{width:148.865214px;}
._3d{width:150.531470px;}
._27{width:157.442930px;}
._26{width:158.669666px;}
._3c{width:160.255042px;}
._42{width:161.548032px;}
._28{width:165.880497px;}
._29{width:166.891278px;}
._2a{width:167.976933px;}
._56{width:168.979457px;}
._57{width:170.041106px;}
._2b{width:172.094932px;}
._8{width:173.766326px;}
._17{width:174.962664px;}
._44{width:176.979050px;}
._5b{width:178.757085px;}
._2f{width:193.941470px;}
._2d{width:212.659883px;}
._5c{width:227.225417px;}
._40{width:242.527389px;}
._45{width:243.984069px;}
._4a{width:246.034272px;}
._51{width:247.971408px;}
._13{width:269.406134px;}
._23{width:270.767090px;}
._35{width:271.856012px;}
._39{width:273.516156px;}
._53{width:276.448932px;}
._59{width:281.446843px;}
._14{width:297.216096px;}
._22{width:298.728145px;}
._31{width:314.352323px;}
._58{width:319.343709px;}
._10{width:325.007865px;}
._20{width:326.689201px;}
._5f{width:335.665156px;}
._4c{width:346.721901px;}
._54{width:349.291796px;}
._34{width:371.627487px;}
._38{width:373.909263px;}
._47{width:427.154481px;}
._4f{width:429.944844px;}
._5d{width:454.098949px;}
._12{width:475.105075px;}
._1f{width:477.945811px;}
._49{width:483.751809px;}
._50{width:486.899894px;}
._5e{width:510.532748px;}
._55{width:646.360843px;}
._3b{width:658.542358px;}
._41{width:661.245672px;}
._25{width:675.950857px;}
._46{width:887.645944px;}
._4d{width:893.157875px;}
._32{width:907.613189px;}
._36{width:913.200263px;}
._5{width:927.232933px;}
._18{width:932.880956px;}
.fc0{color:rgb(0,0,0);}
.fs7{font-size:37.436357px;}
.fsa{font-size:37.510957px;}
.fsb{font-size:37.664939px;}
.fse{font-size:37.896391px;}
.fs0{font-size:41.842800px;}
.fs3{font-size:47.820600px;}
.fsf{font-size:53.798400px;}
.fs5{font-size:55.582840px;}
.fs6{font-size:55.921410px;}
.fs8{font-size:56.087825px;}
.fs9{font-size:56.433090px;}
.fsc{font-size:56.602853px;}
.fsd{font-size:56.954335px;}
.fs4{font-size:59.775600px;}
.fs2{font-size:65.753400px;}
.fs1{font-size:107.596800px;}
.y0{bottom:0.000000px;}
.y26{bottom:74.616943px;}
.y9e{bottom:86.942977px;}
.y62{bottom:87.565996px;}
.y25{bottom:90.344204px;}
.y9d{bottom:97.602095px;}
.y61{bottom:98.116703px;}
.y24{bottom:106.071464px;}
.y9c{bottom:108.260024px;}
.y60{bottom:108.666233px;}
.yce{bottom:110.681958px;}
.y9b{bottom:118.917953px;}
.y5f{bottom:119.216940px;}
.ycd{bottom:121.275975px;}
.y23{bottom:121.800479px;}
.y9a{bottom:129.577071px;}
.y5e{bottom:129.766470px;}
.ycc{bottom:131.868811px;}
.y22{bottom:137.527739px;}
.y99{bottom:140.235000px;}
.y5d{bottom:140.316000px;}
.ycb{bottom:142.462828px;}
.y5c{bottom:150.866707px;}
.y98{bottom:150.892929px;}
.yca{bottom:153.055664px;}
.y21{bottom:153.255000px;}
.y5b{bottom:161.416237px;}
.y97{bottom:161.552047px;}
.yc9{bottom:163.648500px;}
.y20{bottom:168.984015px;}
.y5a{bottom:171.965767px;}
.y96{bottom:172.209976px;}
.yc8{bottom:174.242517px;}
.y59{bottom:182.516474px;}
.y95{bottom:182.869094px;}
.y1f{bottom:184.711275px;}
.yc7{bottom:184.835353px;}
.y58{bottom:193.535473px;}
.y94{bottom:194.000127px;}
.yc6{bottom:195.428189px;}
.y1e{bottom:200.440290px;}
.yc5{bottom:206.022206px;}
.y57{bottom:215.734500px;}
.y1d{bottom:216.167551px;}
.y93{bottom:216.280500px;}
.yc4{bottom:217.086439px;}
.y1c{bottom:232.594697px;}
.yc3{bottom:239.317500px;}
.y1b{bottom:258.649500px;}
.yd8{bottom:263.110500px;}
.y92{bottom:274.147477px;}
.y56{bottom:276.718135px;}
.y91{bottom:284.805406px;}
.yd7{bottom:289.113000px;}
.y1a{bottom:291.829305px;}
.y55{bottom:292.591070px;}
.y90{bottom:295.464524px;}
.y8f{bottom:306.122453px;}
.y19{bottom:307.463090px;}
.y54{bottom:308.462235px;}
.y8e{bottom:316.781571px;}
.y18{bottom:323.095131px;}
.y53{bottom:324.335170px;}
.y8d{bottom:327.439500px;}
.y8c{bottom:338.097429px;}
.y17{bottom:338.728917px;}
.y52{bottom:340.206335px;}
.yc2{bottom:344.686139px;}
.y8b{bottom:348.756547px;}
.y16{bottom:354.360958px;}
.yc1{bottom:355.278975px;}
.y51{bottom:356.077500px;}
.y8a{bottom:359.414476px;}
.yc0{bottom:365.871811px;}
.y15{bottom:369.993000px;}
.y89{bottom:370.072405px;}
.y50{bottom:371.950435px;}
.ybf{bottom:376.465828px;}
.y88{bottom:381.204627px;}
.y14{bottom:385.626785px;}
.ybe{bottom:387.058664px;}
.y4f{bottom:387.821600px;}
.ybd{bottom:397.651500px;}
.y13{bottom:401.258827px;}
.y87{bottom:403.485000px;}
.y4e{bottom:403.692765px;}
.ybc{bottom:408.245517px;}
.y12{bottom:416.890869px;}
.ybb{bottom:418.838353px;}
.y4d{bottom:419.565700px;}
.yba{bottom:429.432370px;}
.y11{bottom:432.524654px;}
.y4c{bottom:436.143155px;}
.yb9{bottom:440.025206px;}
.y10{bottom:448.852344px;}
.yb8{bottom:451.089439px;}
.y4b{bottom:462.304500px;}
.y86{bottom:463.198632px;}
.yb7{bottom:473.322000px;}
.yf{bottom:474.835500px;}
.y85{bottom:479.216391px;}
.y84{bottom:495.234150px;}
.y83{bottom:511.253695px;}
.ye{bottom:519.219000px;}
.y4a{bottom:523.254666px;}
.y82{bottom:527.271455px;}
.yd{bottom:532.669500px;}
.y49{bottom:539.030488px;}
.y81{bottom:543.291000px;}
.yc{bottom:546.118500px;}
.y48{bottom:554.804551px;}
.y80{bottom:559.308759px;}
.yb{bottom:565.132500px;}
.y47{bottom:570.578614px;}
.y7f{bottom:575.326518px;}
.ya{bottom:579.927000px;}
.yb6{bottom:580.507135px;}
.y46{bottom:586.354437px;}
.y7e{bottom:591.346064px;}
.yb5{bottom:596.378300px;}
.yd6{bottom:598.930500px;}
.y45{bottom:602.128500px;}
.y7d{bottom:607.363823px;}
.yb4{bottom:612.251235px;}
.yd5{bottom:616.864500px;}
.y44{bottom:617.902563px;}
.y7c{bottom:624.094395px;}
.yb3{bottom:628.122400px;}
.y43{bottom:633.678386px;}
.yb2{bottom:643.995335px;}
.y42{bottom:649.452449px;}
.y7b{bottom:650.365500px;}
.yb1{bottom:659.866500px;}
.y41{bottom:665.226512px;}
.yd4{bottom:674.599500px;}
.yb0{bottom:675.737665px;}
.y40{bottom:681.702544px;}
.yaf{bottom:691.610600px;}
.yd3{bottom:700.602000px;}
.yae{bottom:707.481765px;}
.y3f{bottom:707.793000px;}
.y7a{bottom:710.043905px;}
.yad{bottom:723.352930px;}
.y79{bottom:725.964589px;}
.ydb{bottom:737.589000px;}
.yac{bottom:739.930385px;}
.y78{bottom:741.883498px;}
.y77{bottom:757.802407px;}
.yda{bottom:763.591500px;}
.yab{bottom:766.093500px;}
.y3e{bottom:766.936903px;}
.y76{bottom:773.723091px;}
.y3d{bottom:777.465453px;}
.y3c{bottom:787.995177px;}
.y75{bottom:789.642000px;}
.y3b{bottom:798.523726px;}
.y74{bottom:805.562684px;}
.y3a{bottom:809.052276px;}
.y39{bottom:819.582000px;}
.y9{bottom:819.772500px;}
.y73{bottom:821.481593px;}
.y38{bottom:830.110550px;}
.y72{bottom:837.400502px;}
.y8{bottom:837.705000px;}
.y37{bottom:840.639099px;}
.y36{bottom:851.168823px;}
.y71{bottom:853.321186px;}
.y7{bottom:860.344500px;}
.y35{bottom:861.697373px;}
.y70{bottom:869.948510px;}
.y34{bottom:872.694458px;}
.yaa{bottom:873.278635px;}
.ya9{bottom:889.149800px;}
.y33{bottom:894.879000px;}
.y6f{bottom:896.145000px;}
.ya8{bottom:905.022735px;}
.ya7{bottom:920.893900px;}
.ya6{bottom:936.765065px;}
.y6{bottom:952.251000px;}
.ya5{bottom:952.638000px;}
.y6e{bottom:953.989458px;}
.y32{bottom:954.022903px;}
.y31{bottom:964.551453px;}
.y6d{bottom:964.583475px;}
.ya4{bottom:968.509165px;}
.y5{bottom:972.276000px;}
.y30{bottom:975.081177px;}
.y6c{bottom:975.176311px;}
.ya3{bottom:984.382100px;}
.y2f{bottom:985.609726px;}
.y6b{bottom:985.769147px;}
.y2e{bottom:996.138276px;}
.y6a{bottom:996.363164px;}
.ya2{bottom:1000.253265px;}
.y2d{bottom:1006.668000px;}
.y69{bottom:1006.956000px;}
.y4{bottom:1007.244000px;}
.yd2{bottom:1010.421000px;}
.ya1{bottom:1016.124430px;}
.y2c{bottom:1017.196550px;}
.y68{bottom:1017.550017px;}
.y2b{bottom:1027.726274px;}
.y67{bottom:1028.142853px;}
.yd1{bottom:1028.353500px;}
.ya0{bottom:1032.701884px;}
.y2a{bottom:1038.254823px;}
.y66{bottom:1038.735689px;}
.y29{bottom:1048.783373px;}
.y3{bottom:1049.086500px;}
.y65{bottom:1049.329706px;}
.y9f{bottom:1058.863500px;}
.y28{bottom:1059.780458px;}
.y64{bottom:1060.393939px;}
.yd0{bottom:1068.702000px;}
.yd9{bottom:1073.409000px;}
.y27{bottom:1081.965000px;}
.y63{bottom:1082.625000px;}
.y2{bottom:1090.930500px;}
.ycf{bottom:1091.343000px;}
.y1{bottom:1141.168500px;}
.hf{height:25.756213px;}
.h15{height:25.807538px;}
.he{height:25.905959px;}
.h17{height:25.913478px;}
.h14{height:25.957582px;}
.h16{height:26.064138px;}
.h1d{height:26.072717px;}
.h1c{height:26.224302px;}
.h1{height:28.787846px;}
.h7{height:32.900573px;}
.h6{height:33.665702px;}
.h1e{height:37.013299px;}
.ha{height:38.240994px;}
.h9{height:38.463325px;}
.hc{height:38.473930px;}
.h11{height:38.588424px;}
.hb{height:38.697615px;}
.h10{height:38.812775px;}
.h13{height:38.825966px;}
.h19{height:38.942763px;}
.h12{height:39.051698px;}
.h18{height:39.169174px;}
.h1b{height:39.184582px;}
.h1a{height:39.412400px;}
.h5{height:41.125613px;}
.h3{height:45.562339px;}
.hd{height:49.473619px;}
.h8{height:49.479619px;}
.h4{height:57.413702px;}
.h2{height:74.026598px;}
.h0{height:1188.000000px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.xe{left:73.446000px;}
.x1d{left:75.721500px;}
.x14{left:80.464642px;}
.x11{left:83.866780px;}
.xf{left:86.148000px;}
.xd{left:88.390500px;}
.x3{left:96.415500px;}
.x5{left:166.570500px;}
.x4{left:211.543500px;}
.x6{left:258.163500px;}
.x1e{left:294.102000px;}
.x2{left:303.162000px;}
.xb{left:311.181000px;}
.x1a{left:313.402500px;}
.x15{left:315.889500px;}
.x17{left:319.468500px;}
.x12{left:322.375500px;}
.x18{left:324.664500px;}
.x1b{left:325.755000px;}
.x13{left:327.571500px;}
.x19{left:330.732000px;}
.x16{left:333.220500px;}
.x10{left:336.126000px;}
.xc{left:372.199500px;}
.x1c{left:387.427500px;}
.x7{left:452.508000px;}
.x8{left:578.059500px;}
.x9{left:610.294500px;}
.xa{left:693.636000px;}
.x1{left:839.323500px;}
@media print{
.v2{vertical-align:-15.002667pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:19.285333pt;}
.v1{vertical-align:21.109333pt;}
.lsa{letter-spacing:0.000000pt;}
.lsb{letter-spacing:0.407455pt;}
.ls8{letter-spacing:0.412788pt;}
.lse{letter-spacing:2.635446pt;}
.ls6{letter-spacing:2.653258pt;}
.lsf{letter-spacing:2.654903pt;}
.ls3{letter-spacing:2.655207pt;}
.lsd{letter-spacing:2.656015pt;}
.ls4{letter-spacing:2.657326pt;}
.ls7{letter-spacing:2.658767pt;}
.ls5{letter-spacing:18.597812pt;}
.ls2{letter-spacing:20.460133pt;}
.ls9{letter-spacing:21.250245pt;}
.lsc{letter-spacing:21.255578pt;}
.ls1{letter-spacing:41.693258pt;}
.ls0{letter-spacing:41.698591pt;}
.ws2{word-spacing:-14.611867pt;}
.ws2f{word-spacing:-13.262246pt;}
.ws7{word-spacing:-10.626800pt;}
.ws3{word-spacing:-3.441988pt;}
.ws14{word-spacing:0.000000pt;}
.ws2e{word-spacing:0.017743pt;}
.ws8{word-spacing:2.178489pt;}
.ws30{word-spacing:2.762961pt;}
.ws16{word-spacing:3.327676pt;}
.ws20{word-spacing:3.334307pt;}
.ws22{word-spacing:3.347995pt;}
.ws2b{word-spacing:3.368568pt;}
.ws33{word-spacing:3.666237pt;}
.ws32{word-spacing:4.250709pt;}
.wsa{word-spacing:4.250720pt;}
.ws31{word-spacing:4.782080pt;}
.ws6{word-spacing:5.271013pt;}
.ws5{word-spacing:5.289257pt;}
.ws9{word-spacing:5.313387pt;}
.ws1{word-spacing:5.844747pt;}
.ws2d{word-spacing:8.373388pt;}
.ws2c{word-spacing:8.424843pt;}
.wsb{word-spacing:8.713976pt;}
.ws0{word-spacing:9.564160pt;}
.wsc{word-spacing:10.074206pt;}
.wse{word-spacing:12.346859pt;}
.wsf{word-spacing:12.349244pt;}
.ws10{word-spacing:12.349554pt;}
.ws18{word-spacing:12.459033pt;}
.ws1a{word-spacing:12.460132pt;}
.ws19{word-spacing:12.461440pt;}
.ws1b{word-spacing:12.467606pt;}
.ws24{word-spacing:12.573439pt;}
.ws25{word-spacing:12.574547pt;}
.ws26{word-spacing:12.575868pt;}
.ws4{word-spacing:20.398166pt;}
.ws11{word-spacing:73.418755pt;}
.ws13{word-spacing:73.865969pt;}
.wsd{word-spacing:74.061046pt;}
.ws1c{word-spacing:74.085785pt;}
.ws12{word-spacing:74.512172pt;}
.ws1e{word-spacing:74.541842pt;}
.ws17{word-spacing:74.733911pt;}
.ws27{word-spacing:74.766080pt;}
.ws1d{word-spacing:75.193957pt;}
.ws29{word-spacing:75.230348pt;}
.ws23{word-spacing:75.420157pt;}
.ws28{word-spacing:75.888487pt;}
.ws15{word-spacing:133.539644pt;}
.ws21{word-spacing:134.355023pt;}
.ws2a{word-spacing:135.180637pt;}
.ws1f{word-spacing:139.374044pt;}
._4{margin-left:-6.491389pt;}
._3{margin-left:-4.675797pt;}
._2{margin-left:-3.506848pt;}
._60{margin-left:-2.597595pt;}
._0{margin-left:-1.610618pt;}
._1{width:2.631524pt;}
._2c{width:16.641192pt;}
._5a{width:17.712530pt;}
._15{width:23.965991pt;}
._16{width:25.076739pt;}
._4e{width:26.090627pt;}
._2e{width:49.915142pt;}
._3e{width:50.873238pt;}
._3f{width:55.549559pt;}
._61{width:60.541013pt;}
._30{width:66.817999pt;}
._43{width:67.826015pt;}
._e{width:79.594627pt;}
._1e{width:80.658652pt;}
._24{width:81.682520pt;}
._19{width:83.462850pt;}
._7{width:84.404967pt;}
._1a{width:85.543157pt;}
._a{width:86.462195pt;}
._9{width:88.240846pt;}
._1b{width:89.501311pt;}
._6{width:91.236807pt;}
._33{width:92.870176pt;}
._d{width:94.021461pt;}
._c{width:95.355450pt;}
._4b{width:96.373542pt;}
._48{width:97.265318pt;}
._b{width:98.189512pt;}
._1c{width:100.039268pt;}
._3a{width:101.199219pt;}
._11{width:105.035196pt;}
._21{width:106.536791pt;}
._52{width:108.589137pt;}
._f{width:129.740850pt;}
._1d{width:131.391063pt;}
._37{width:132.324635pt;}
._3d{width:133.805751pt;}
._27{width:139.949271pt;}
._26{width:141.039703pt;}
._3c{width:142.448927pt;}
._42{width:143.598251pt;}
._28{width:147.449330pt;}
._29{width:148.347803pt;}
._2a{width:149.312829pt;}
._56{width:150.203962pt;}
._57{width:151.147650pt;}
._2b{width:152.973273pt;}
._8{width:154.458956pt;}
._17{width:155.522368pt;}
._44{width:157.314711pt;}
._5b{width:158.895186pt;}
._2f{width:172.392418pt;}
._2d{width:189.031007pt;}
._5c{width:201.978149pt;}
._40{width:215.579901pt;}
._45{width:216.874728pt;}
._4a{width:218.697131pt;}
._51{width:220.419029pt;}
._13{width:239.472119pt;}
._23{width:240.681858pt;}
._35{width:241.649789pt;}
._39{width:243.125472pt;}
._53{width:245.732384pt;}
._59{width:250.174972pt;}
._14{width:264.192086pt;}
._22{width:265.536129pt;}
._31{width:279.424287pt;}
._58{width:283.861075pt;}
._10{width:288.895880pt;}
._20{width:290.390401pt;}
._5f{width:298.369028pt;}
._4c{width:308.197246pt;}
._54{width:310.481597pt;}
._34{width:330.335544pt;}
._38{width:332.363790pt;}
._47{width:379.692872pt;}
._4f{width:382.173195pt;}
._5d{width:403.643511pt;}
._12{width:422.315623pt;}
._1f{width:424.840721pt;}
._49{width:430.001608pt;}
._50{width:432.799905pt;}
._5e{width:453.806887pt;}
._55{width:574.542971pt;}
._3b{width:585.370985pt;}
._41{width:587.773931pt;}
._25{width:600.845206pt;}
._46{width:789.018617pt;}
._4d{width:793.918111pt;}
._32{width:806.767280pt;}
._36{width:811.733567pt;}
._5{width:824.207052pt;}
._18{width:829.227516pt;}
.fs7{font-size:33.276762pt;}
.fsa{font-size:33.343073pt;}
.fsb{font-size:33.479946pt;}
.fse{font-size:33.685681pt;}
.fs0{font-size:37.193600pt;}
.fs3{font-size:42.507200pt;}
.fsf{font-size:47.820800pt;}
.fs5{font-size:49.406969pt;}
.fs6{font-size:49.707920pt;}
.fs8{font-size:49.855845pt;}
.fs9{font-size:50.162747pt;}
.fsc{font-size:50.313647pt;}
.fsd{font-size:50.626075pt;}
.fs4{font-size:53.133867pt;}
.fs2{font-size:58.447467pt;}
.fs1{font-size:95.641600pt;}
.y0{bottom:0.000000pt;}
.y26{bottom:66.326171pt;}
.y9e{bottom:77.282647pt;}
.y62{bottom:77.836441pt;}
.y25{bottom:80.305959pt;}
.y9d{bottom:86.757418pt;}
.y61{bottom:87.214847pt;}
.y24{bottom:94.285746pt;}
.y9c{bottom:96.231133pt;}
.y60{bottom:96.592207pt;}
.yce{bottom:98.383962pt;}
.y9b{bottom:105.704847pt;}
.y5f{bottom:105.970613pt;}
.ycd{bottom:107.800867pt;}
.y23{bottom:108.267092pt;}
.y9a{bottom:115.179619pt;}
.y5e{bottom:115.347973pt;}
.ycc{bottom:117.216721pt;}
.y22{bottom:122.246879pt;}
.y99{bottom:124.653333pt;}
.y5d{bottom:124.725333pt;}
.ycb{bottom:126.633625pt;}
.y5c{bottom:134.103739pt;}
.y98{bottom:134.127048pt;}
.yca{bottom:136.049479pt;}
.y21{bottom:136.226667pt;}
.y5b{bottom:143.481099pt;}
.y97{bottom:143.601819pt;}
.yc9{bottom:145.465333pt;}
.y20{bottom:150.208013pt;}
.y5a{bottom:152.858459pt;}
.y96{bottom:153.075534pt;}
.yc8{bottom:154.882238pt;}
.y59{bottom:162.236865pt;}
.y95{bottom:162.550305pt;}
.y1f{bottom:164.187800pt;}
.yc7{bottom:164.298092pt;}
.y58{bottom:172.031532pt;}
.y94{bottom:172.444557pt;}
.yc6{bottom:173.713946pt;}
.y1e{bottom:178.169147pt;}
.yc5{bottom:183.130850pt;}
.y57{bottom:191.764000pt;}
.y1d{bottom:192.148934pt;}
.y93{bottom:192.249333pt;}
.yc4{bottom:192.965723pt;}
.y1c{bottom:206.750842pt;}
.yc3{bottom:212.726667pt;}
.y1b{bottom:229.910667pt;}
.yd8{bottom:233.876000pt;}
.y92{bottom:243.686647pt;}
.y56{bottom:245.971676pt;}
.y91{bottom:253.160361pt;}
.yd7{bottom:256.989333pt;}
.y1a{bottom:259.403826pt;}
.y55{bottom:260.080951pt;}
.y90{bottom:262.635133pt;}
.y8f{bottom:272.108847pt;}
.y19{bottom:273.300524pt;}
.y54{bottom:274.188653pt;}
.y8e{bottom:281.583619pt;}
.y18{bottom:287.195672pt;}
.y53{bottom:288.297929pt;}
.y8d{bottom:291.057333pt;}
.y8c{bottom:300.531048pt;}
.y17{bottom:301.092370pt;}
.y52{bottom:302.405631pt;}
.yc2{bottom:306.387679pt;}
.y8b{bottom:310.005819pt;}
.y16{bottom:314.987519pt;}
.yc1{bottom:315.803533pt;}
.y51{bottom:316.513333pt;}
.y8a{bottom:319.479534pt;}
.yc0{bottom:325.219388pt;}
.y15{bottom:328.882667pt;}
.y89{bottom:328.953249pt;}
.y50{bottom:330.622609pt;}
.ybf{bottom:334.636292pt;}
.y88{bottom:338.848557pt;}
.y14{bottom:342.779365pt;}
.ybe{bottom:344.052146pt;}
.y4f{bottom:344.730311pt;}
.ybd{bottom:353.468000pt;}
.y13{bottom:356.674513pt;}
.y87{bottom:358.653333pt;}
.y4e{bottom:358.838013pt;}
.ybc{bottom:362.884904pt;}
.y12{bottom:370.569661pt;}
.ybb{bottom:372.300758pt;}
.y4d{bottom:372.947289pt;}
.yba{bottom:381.717663pt;}
.y11{bottom:384.466359pt;}
.y4c{bottom:387.682804pt;}
.yb9{bottom:391.133517pt;}
.y10{bottom:398.979861pt;}
.yb8{bottom:400.968390pt;}
.y4b{bottom:410.937333pt;}
.y86{bottom:411.732117pt;}
.yb7{bottom:420.730667pt;}
.yf{bottom:422.076000pt;}
.y85{bottom:425.970125pt;}
.y84{bottom:440.208133pt;}
.y83{bottom:454.447729pt;}
.ye{bottom:461.528000pt;}
.y4a{bottom:465.115258pt;}
.y82{bottom:468.685737pt;}
.yd{bottom:473.484000pt;}
.y49{bottom:479.138212pt;}
.y81{bottom:482.925333pt;}
.yc{bottom:485.438667pt;}
.y48{bottom:493.159601pt;}
.y80{bottom:497.163341pt;}
.yb{bottom:502.340000pt;}
.y47{bottom:507.180991pt;}
.y7f{bottom:511.401349pt;}
.ya{bottom:515.490667pt;}
.yb6{bottom:516.006342pt;}
.y46{bottom:521.203944pt;}
.y7e{bottom:525.640945pt;}
.yb5{bottom:530.114045pt;}
.yd6{bottom:532.382667pt;}
.y45{bottom:535.225333pt;}
.y7d{bottom:539.878953pt;}
.yb4{bottom:544.223320pt;}
.yd5{bottom:548.324000pt;}
.y44{bottom:549.246723pt;}
.y7c{bottom:554.750573pt;}
.yb3{bottom:558.331022pt;}
.y43{bottom:563.269676pt;}
.yb2{bottom:572.440298pt;}
.y42{bottom:577.291065pt;}
.y7b{bottom:578.102667pt;}
.yb1{bottom:586.548000pt;}
.y41{bottom:591.312455pt;}
.yd4{bottom:599.644000pt;}
.yb0{bottom:600.655702pt;}
.y40{bottom:605.957817pt;}
.yaf{bottom:614.764978pt;}
.yd3{bottom:622.757333pt;}
.yae{bottom:628.872680pt;}
.y3f{bottom:629.149333pt;}
.y7a{bottom:631.150138pt;}
.yad{bottom:642.980382pt;}
.y79{bottom:645.301857pt;}
.ydb{bottom:655.634667pt;}
.yac{bottom:657.715897pt;}
.y78{bottom:659.451998pt;}
.y77{bottom:673.602139pt;}
.yda{bottom:678.748000pt;}
.yab{bottom:680.972000pt;}
.y3e{bottom:681.721692pt;}
.y76{bottom:687.753859pt;}
.y3d{bottom:691.080403pt;}
.y3c{bottom:700.440157pt;}
.y75{bottom:701.904000pt;}
.y3b{bottom:709.798868pt;}
.y74{bottom:716.055719pt;}
.y3a{bottom:719.157579pt;}
.y39{bottom:728.517333pt;}
.y9{bottom:728.686667pt;}
.y73{bottom:730.205861pt;}
.y38{bottom:737.876044pt;}
.y72{bottom:744.356002pt;}
.y8{bottom:744.626667pt;}
.y37{bottom:747.234755pt;}
.y36{bottom:756.594510pt;}
.y71{bottom:758.507721pt;}
.y7{bottom:764.750667pt;}
.y35{bottom:765.953220pt;}
.y70{bottom:773.287564pt;}
.y34{bottom:775.728407pt;}
.yaa{bottom:776.247676pt;}
.ya9{bottom:790.355378pt;}
.y33{bottom:795.448000pt;}
.y6f{bottom:796.573333pt;}
.ya8{bottom:804.464653pt;}
.ya7{bottom:818.572356pt;}
.ya6{bottom:832.680058pt;}
.y6{bottom:846.445333pt;}
.ya5{bottom:846.789333pt;}
.y6e{bottom:847.990629pt;}
.y32{bottom:848.020358pt;}
.y31{bottom:857.379069pt;}
.y6d{bottom:857.407533pt;}
.ya4{bottom:860.897035pt;}
.y5{bottom:864.245333pt;}
.y30{bottom:866.738824pt;}
.y6c{bottom:866.823388pt;}
.ya3{bottom:875.006311pt;}
.y2f{bottom:876.097535pt;}
.y6b{bottom:876.239242pt;}
.y2e{bottom:885.456245pt;}
.y6a{bottom:885.656146pt;}
.ya2{bottom:889.114013pt;}
.y2d{bottom:894.816000pt;}
.y69{bottom:895.072000pt;}
.y4{bottom:895.328000pt;}
.yd2{bottom:898.152000pt;}
.ya1{bottom:903.221715pt;}
.y2c{bottom:904.174711pt;}
.y68{bottom:904.488904pt;}
.y2b{bottom:913.534465pt;}
.y67{bottom:913.904758pt;}
.yd1{bottom:914.092000pt;}
.ya0{bottom:917.957231pt;}
.y2a{bottom:922.893176pt;}
.y66{bottom:923.320612pt;}
.y29{bottom:932.251887pt;}
.y3{bottom:932.521333pt;}
.y65{bottom:932.737517pt;}
.y9f{bottom:941.212000pt;}
.y28{bottom:942.027074pt;}
.y64{bottom:942.572390pt;}
.yd0{bottom:949.957333pt;}
.yd9{bottom:954.141333pt;}
.y27{bottom:961.746667pt;}
.y63{bottom:962.333333pt;}
.y2{bottom:969.716000pt;}
.ycf{bottom:970.082667pt;}
.y1{bottom:1014.372000pt;}
.hf{height:22.894412pt;}
.h15{height:22.940034pt;}
.he{height:23.027519pt;}
.h17{height:23.034203pt;}
.h14{height:23.073406pt;}
.h16{height:23.168123pt;}
.h1d{height:23.175748pt;}
.h1c{height:23.310491pt;}
.h1{height:25.589197pt;}
.h7{height:29.244954pt;}
.h6{height:29.925069pt;}
.h1e{height:32.900710pt;}
.ha{height:33.991994pt;}
.h9{height:34.189622pt;}
.hc{height:34.199049pt;}
.h11{height:34.300821pt;}
.hb{height:34.397880pt;}
.h10{height:34.500245pt;}
.h13{height:34.511970pt;}
.h19{height:34.615789pt;}
.h12{height:34.712621pt;}
.h18{height:34.817044pt;}
.h1b{height:34.830740pt;}
.h1a{height:35.033244pt;}
.h5{height:36.556100pt;}
.h3{height:40.499857pt;}
.hd{height:43.976550pt;}
.h8{height:43.981884pt;}
.h4{height:51.034402pt;}
.h2{height:65.801421pt;}
.h0{height:1056.000000pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.xe{left:65.285333pt;}
.x1d{left:67.308000pt;}
.x14{left:71.524126pt;}
.x11{left:74.548249pt;}
.xf{left:76.576000pt;}
.xd{left:78.569333pt;}
.x3{left:85.702667pt;}
.x5{left:148.062667pt;}
.x4{left:188.038667pt;}
.x6{left:229.478667pt;}
.x1e{left:261.424000pt;}
.x2{left:269.477333pt;}
.xb{left:276.605333pt;}
.x1a{left:278.580000pt;}
.x15{left:280.790667pt;}
.x17{left:283.972000pt;}
.x12{left:286.556000pt;}
.x18{left:288.590667pt;}
.x1b{left:289.560000pt;}
.x13{left:291.174667pt;}
.x19{left:293.984000pt;}
.x16{left:296.196000pt;}
.x10{left:298.778667pt;}
.xc{left:330.844000pt;}
.x1c{left:344.380000pt;}
.x7{left:402.229333pt;}
.x8{left:513.830667pt;}
.x9{left:542.484000pt;}
.xa{left:616.565333pt;}
.x1{left:746.065333pt;}
}




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