
    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_f9f8afc36cbb852deabd333e.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.910156;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_52d474a0e61dd84e74c0b19d.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.715000;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_a993be77a578dca6badbb804.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.893555;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_4e96f7c346a3cb0c9c011aab.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.921387;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_3e3c7444b64191e5862c1679.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.893555;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_6363a097f6ab6e286cec62b3.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.910156;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_0c4ad94bda07b2b1545ffd79.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.911133;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_f9f8afc36cbb852deabd333e.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_d87fcbf50e10437969bde402.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_ffc91d363484d6e78d5681bb.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.893066;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_d838f0594ab8472f2e4d7c10.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.893066;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;}
.v1{vertical-align:36.000000px;}
.ls4{letter-spacing:-1.980000px;}
.ls2{letter-spacing:-0.720000px;}
.ls5{letter-spacing:-0.660000px;}
.ls3{letter-spacing:-0.360000px;}
.ls1{letter-spacing:-0.345000px;}
.ls0{letter-spacing:0.000000px;}
.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;}
}
.ws4{word-spacing:-18.000000px;}
.ws0{word-spacing:-17.250000px;}
.ws1b{word-spacing:-16.500000px;}
.ws5{word-spacing:-1.224000px;}
.ws1{word-spacing:0.000000px;}
.ws2{word-spacing:0.345000px;}
.ws9{word-spacing:0.360000px;}
.ws16{word-spacing:0.660000px;}
.ws6{word-spacing:0.720000px;}
.ws11{word-spacing:1.980000px;}
.ws8{word-spacing:8.208000px;}
.ws7{word-spacing:14.544000px;}
.ws1c{word-spacing:22.440000px;}
.ws3{word-spacing:35.121000px;}
.ws18{word-spacing:103.048200px;}
.wsa{word-spacing:117.036600px;}
.ws14{word-spacing:233.825400px;}
.ws15{word-spacing:234.938400px;}
.ws17{word-spacing:248.825400px;}
.ws13{word-spacing:312.363000px;}
.ws12{word-spacing:337.113000px;}
.wsc{word-spacing:388.500000px;}
.wsd{word-spacing:389.613000px;}
.ws10{word-spacing:403.500000px;}
.wsb{word-spacing:418.650000px;}
.wse{word-spacing:418.650600px;}
.wsf{word-spacing:441.150000px;}
.ws19{word-spacing:492.072000px;}
.ws1a{word-spacing:496.499400px;}
._22{margin-left:-14.745600px;}
._4b{margin-left:-10.612800px;}
._a{margin-left:-9.328800px;}
._3{margin-left:-7.791600px;}
._15{margin-left:-6.681600px;}
._0{margin-left:-5.352000px;}
._7{margin-left:-4.283100px;}
._2{margin-left:-3.066000px;}
._1{margin-left:-1.503600px;}
._6{width:1.121400px;}
._b{width:2.531100px;}
._11{width:3.952800px;}
._12{width:5.054400px;}
._10{width:6.088200px;}
._8{width:7.217400px;}
._5{width:8.976900px;}
._d{width:10.010100px;}
._9{width:11.253900px;}
._c{width:13.137600px;}
._1a{width:14.290800px;}
._19{width:15.330000px;}
._e{width:16.387200px;}
._17{width:19.353600px;}
._16{width:20.700000px;}
._14{width:22.593600px;}
._f{width:24.616800px;}
._1b{width:25.617600px;}
._1c{width:26.676000px;}
._18{width:27.684000px;}
._13{width:28.713600px;}
._1f{width:30.182400px;}
._20{width:32.162400px;}
._45{width:33.645600px;}
._4{width:34.791600px;}
._1e{width:36.000000px;}
._49{width:40.716300px;}
._48{width:42.429600px;}
._46{width:43.515600px;}
._47{width:44.892000px;}
._1d{width:45.892800px;}
._21{width:47.612400px;}
._4a{width:50.032800px;}
._33{width:66.087000px;}
._25{width:108.767400px;}
._2a{width:135.120600px;}
._2b{width:157.326000px;}
._29{width:168.340200px;}
._26{width:199.650600px;}
._34{width:251.650200px;}
._3c{width:254.890200px;}
._3a{width:257.250000px;}
._39{width:259.500000px;}
._3b{width:260.553600px;}
._3d{width:272.547600px;}
._37{width:274.202400px;}
._36{width:275.613600px;}
._38{width:318.250200px;}
._3f{width:335.412000px;}
._35{width:340.500000px;}
._30{width:458.763600px;}
._2e{width:460.716600px;}
._31{width:473.763600px;}
._2c{width:481.263600px;}
._41{width:511.500000px;}
._43{width:542.339400px;}
._40{width:597.189000px;}
._42{width:599.355600px;}
._2f{width:624.694800px;}
._44{width:626.693400px;}
._3e{width:629.415600px;}
._32{width:639.694800px;}
._2d{width:647.194800px;}
._23{width:720.150600px;}
._24{width:742.650000px;}
._28{width:873.218400px;}
._27{width:922.718400px;}
.fc1{color:rgb(16,15,13);}
.fc2{color:rgb(0,0,0);}
.fc0{color:rgb(35,31,32);}
.fs0{font-size:48.000000px;}
.fs4{font-size:60.000000px;}
.fs5{font-size:66.000000px;}
.fs3{font-size:69.000000px;}
.fs1{font-size:72.000000px;}
.fs2{font-size:84.000000px;}
.y0{bottom:0.000000px;}
.y2{bottom:38.138100px;}
.y4c{bottom:76.751700px;}
.y9e{bottom:77.200500px;}
.y188{bottom:83.178450px;}
.y121{bottom:86.848800px;}
.y75{bottom:87.494550px;}
.ye4{bottom:87.902550px;}
.y14d{bottom:90.407250px;}
.y108{bottom:92.040600px;}
.y22{bottom:92.195250px;}
.y1ed{bottom:93.198600px;}
.y4b{bottom:97.751700px;}
.y9d{bottom:98.200500px;}
.y20d{bottom:101.229000px;}
.y120{bottom:104.848800px;}
.y187{bottom:104.928450px;}
.y1aa{bottom:107.842650px;}
.y74{bottom:108.194550px;}
.ye3{bottom:109.652550px;}
.y1cd{bottom:112.802550px;}
.y14c{bottom:113.657250px;}
.y107{bottom:113.790600px;}
.y21{bottom:113.945250px;}
.y1ec{bottom:114.948600px;}
.y4a{bottom:118.751700px;}
.yc3{bottom:120.700500px;}
.y20c{bottom:120.729000px;}
.y11f{bottom:124.648800px;}
.y186{bottom:126.678450px;}
.y9c{bottom:127.704600px;}
.y171{bottom:127.808700px;}
.y160{bottom:128.208000px;}
.y73{bottom:128.894550px;}
.y1a9{bottom:130.342650px;}
.ye2{bottom:131.402550px;}
.y1cc{bottom:135.302550px;}
.y106{bottom:135.540600px;}
.y1eb{bottom:136.698600px;}
.y14b{bottom:136.907250px;}
.y49{bottom:139.751700px;}
.yc2{bottom:142.450500px;}
.y20b{bottom:142.980900px;}
.y170{bottom:147.608700px;}
.y185{bottom:148.428450px;}
.y20{bottom:149.195250px;}
.y72{bottom:149.594550px;}
.y138{bottom:149.941350px;}
.y15f{bottom:149.958000px;}
.y1a8{bottom:152.842650px;}
.ye1{bottom:153.152550px;}
.y105{bottom:157.290600px;}
.y1cb{bottom:157.802550px;}
.y1ea{bottom:158.448600px;}
.y14a{bottom:160.157250px;}
.y48{bottom:160.751700px;}
.y20a{bottom:160.980900px;}
.y9b{bottom:161.304600px;}
.yc1{bottom:164.200500px;}
.y184{bottom:170.178450px;}
.y71{bottom:170.294550px;}
.y137{bottom:171.541500px;}
.y15e{bottom:171.708000px;}
.ye0{bottom:174.902550px;}
.y1a7{bottom:175.342650px;}
.y16f{bottom:175.912650px;}
.y104{bottom:179.040600px;}
.y1ca{bottom:180.302550px;}
.y47{bottom:181.751700px;}
.y9a{bottom:182.004600px;}
.y209{bottom:183.232800px;}
.y149{bottom:183.407250px;}
.yc0{bottom:190.202550px;}
.y70{bottom:190.994550px;}
.y183{bottom:191.928600px;}
.y1f{bottom:192.395250px;}
.y15d{bottom:193.458000px;}
.y16e{bottom:193.912650px;}
.ydf{bottom:196.652550px;}
.y1a6{bottom:197.842650px;}
.y208{bottom:201.232800px;}
.y1e9{bottom:201.798600px;}
.y99{bottom:202.704600px;}
.y46{bottom:202.751700px;}
.y1c9{bottom:202.802550px;}
.y148{bottom:209.215500px;}
.y136{bottom:211.516350px;}
.y6f{bottom:211.694550px;}
.y103{bottom:212.790600px;}
.y15c{bottom:215.208000px;}
.y1e{bottom:216.147150px;}
.yde{bottom:219.152550px;}
.ybf{bottom:220.202550px;}
.y1a5{bottom:220.342650px;}
.y98{bottom:223.404450px;}
.y207{bottom:223.484850px;}
.y45{bottom:223.751700px;}
.y1c8{bottom:225.302550px;}
.y182{bottom:230.178600px;}
.y6e{bottom:232.394550px;}
.y135{bottom:234.956850px;}
.y1d{bottom:237.747150px;}
.ybe{bottom:241.202550px;}
.y206{bottom:241.484850px;}
.ydd{bottom:241.652550px;}
.y1a4{bottom:242.842650px;}
.y147{bottom:243.236250px;}
.y97{bottom:244.104600px;}
.y44{bottom:244.751700px;}
.y1e8{bottom:244.998600px;}
.y1c7{bottom:247.802550px;}
.y6d{bottom:253.094550px;}
.y102{bottom:255.990600px;}
.y134{bottom:258.397200px;}
.y181{bottom:258.482550px;}
.y205{bottom:259.484850px;}
.y146{bottom:261.236250px;}
.y1c{bottom:261.499200px;}
.ybd{bottom:262.202550px;}
.ydc{bottom:262.652550px;}
.y15b{bottom:262.810050px;}
.y96{bottom:264.804450px;}
.y1a3{bottom:265.342650px;}
.y43{bottom:265.751700px;}
.y1e7{bottom:267.498600px;}
.y1c6{bottom:270.302550px;}
.y6c{bottom:273.794550px;}
.y180{bottom:276.482550px;}
.y101{bottom:276.990600px;}
.y1b{bottom:280.999200px;}
.y204{bottom:281.736900px;}
.y133{bottom:281.837700px;}
.ybc{bottom:283.202550px;}
.ydb{bottom:283.652550px;}
.y95{bottom:285.504600px;}
.y42{bottom:286.751700px;}
.y1a2{bottom:287.842650px;}
.y1e6{bottom:289.998600px;}
.y1c5{bottom:292.802550px;}
.y6b{bottom:294.494550px;}
.y100{bottom:297.990600px;}
.y203{bottom:299.736900px;}
.y1a{bottom:300.499200px;}
.ybb{bottom:304.202550px;}
.yda{bottom:304.652550px;}
.y132{bottom:305.278050px;}
.y15a{bottom:305.410050px;}
.y145{bottom:305.740200px;}
.y94{bottom:306.204600px;}
.y41{bottom:307.751700px;}
.y1a1{bottom:308.842650px;}
.y1e5{bottom:312.498600px;}
.y6a{bottom:315.194550px;}
.y1c4{bottom:315.302550px;}
.yff{bottom:318.990600px;}
.y19{bottom:319.999200px;}
.y202{bottom:321.988800px;}
.yba{bottom:325.202550px;}
.yd9{bottom:325.652550px;}
.y93{bottom:326.904450px;}
.y159{bottom:327.160050px;}
.y144{bottom:327.340200px;}
.y131{bottom:328.718550px;}
.y40{bottom:328.751700px;}
.y1a0{bottom:330.592650px;}
.y1e4{bottom:334.998600px;}
.y69{bottom:335.894550px;}
.y1c3{bottom:337.802550px;}
.y18{bottom:339.499200px;}
.y201{bottom:339.988800px;}
.yfe{bottom:339.990600px;}
.yb9{bottom:346.202550px;}
.yd8{bottom:346.652550px;}
.y92{bottom:347.604600px;}
.y158{bottom:348.910050px;}
.y143{bottom:348.940200px;}
.y3f{bottom:349.751700px;}
.y130{bottom:352.158900px;}
.y19f{bottom:352.342650px;}
.y68{bottom:356.594550px;}
.y1e3{bottom:357.498600px;}
.y17{bottom:358.999200px;}
.y1c2{bottom:360.302550px;}
.yfd{bottom:360.990600px;}
.y200{bottom:362.240700px;}
.yb8{bottom:367.202550px;}
.yd7{bottom:368.252550px;}
.y91{bottom:368.304450px;}
.y142{bottom:370.540200px;}
.y157{bottom:370.660050px;}
.y3e{bottom:370.751700px;}
.y19e{bottom:374.092650px;}
.y12f{bottom:375.599400px;}
.y67{bottom:377.294550px;}
.y16{bottom:378.499200px;}
.y1e2{bottom:379.998600px;}
.y1ff{bottom:380.240700px;}
.yfc{bottom:381.990600px;}
.y1c1{bottom:382.802550px;}
.yb7{bottom:388.202550px;}
.y90{bottom:389.004600px;}
.yd6{bottom:390.002550px;}
.y3d{bottom:391.751700px;}
.y141{bottom:392.140200px;}
.y156{bottom:392.410050px;}
.y19d{bottom:395.842650px;}
.y66{bottom:397.994550px;}
.y15{bottom:397.999200px;}
.y12e{bottom:399.039900px;}
.y1fe{bottom:402.492750px;}
.y1e1{bottom:402.498600px;}
.yfb{bottom:402.990600px;}
.y1c0{bottom:405.302550px;}
.yb6{bottom:409.202550px;}
.y8f{bottom:409.704600px;}
.yd5{bottom:411.752550px;}
.y3c{bottom:412.751700px;}
.y140{bottom:413.740200px;}
.y14{bottom:417.499200px;}
.y19c{bottom:417.592650px;}
.y65{bottom:418.694550px;}
.y1fd{bottom:420.492750px;}
.yfa{bottom:424.740600px;}
.y1e0{bottom:424.998600px;}
.y1bf{bottom:427.802550px;}
.yb5{bottom:430.202550px;}
.y8e{bottom:430.404450px;}
.y12d{bottom:430.965600px;}
.yd4{bottom:433.502550px;}
.y3b{bottom:433.751700px;}
.y155{bottom:435.760050px;}
.y13{bottom:436.999200px;}
.y19b{bottom:439.342650px;}
.y64{bottom:439.394550px;}
.y1fc{bottom:442.744650px;}
.yf9{bottom:446.490600px;}
.y11e{bottom:447.395850px;}
.y1df{bottom:447.498600px;}
.y1be{bottom:450.302550px;}
.y8d{bottom:451.104600px;}
.yb4{bottom:451.202550px;}
.y3a{bottom:454.751700px;}
.y154{bottom:455.560050px;}
.y12{bottom:456.499200px;}
.yd3{bottom:459.504600px;}
.y63{bottom:460.094550px;}
.y1fb{bottom:460.744650px;}
.y19a{bottom:461.092650px;}
.y11d{bottom:466.316550px;}
.y12c{bottom:467.252550px;}
.yf8{bottom:468.240600px;}
.y1de{bottom:469.998600px;}
.y8c{bottom:471.804450px;}
.y1bd{bottom:471.902550px;}
.yb3{bottom:472.202550px;}
.y39{bottom:475.751700px;}
.y11{bottom:475.999200px;}
.y153{bottom:477.160050px;}
.y13f{bottom:478.540200px;}
.y62{bottom:480.794550px;}
.y199{bottom:482.842650px;}
.y1fa{bottom:482.996700px;}
.y12b{bottom:488.852550px;}
.y11c{bottom:489.566550px;}
.yf7{bottom:489.990600px;}
.y8b{bottom:492.504600px;}
.yb2{bottom:493.202550px;}
.y1bc{bottom:493.502550px;}
.y10{bottom:495.499200px;}
.y1dd{bottom:495.850500px;}
.y38{bottom:496.751700px;}
.y13e{bottom:500.290200px;}
.y1f9{bottom:500.996700px;}
.y61{bottom:501.494550px;}
.yd2{bottom:501.504600px;}
.yf6{bottom:511.740600px;}
.y11b{bottom:512.816550px;}
.y8a{bottom:513.204600px;}
.yb1{bottom:514.202550px;}
.yf{bottom:514.999200px;}
.y1bb{bottom:515.102550px;}
.y37{bottom:517.751700px;}
.y1dc{bottom:518.350500px;}
.y60{bottom:522.194550px;}
.yd1{bottom:522.504600px;}
.y1f8{bottom:523.248600px;}
.y198{bottom:526.192650px;}
.y12a{bottom:532.202550px;}
.y89{bottom:533.904450px;}
.ye{bottom:534.499200px;}
.yb0{bottom:535.202550px;}
.y11a{bottom:536.066550px;}
.y1ba{bottom:536.702550px;}
.yf5{bottom:537.742650px;}
.y13d{bottom:538.292250px;}
.y36{bottom:538.751700px;}
.y1db{bottom:540.850500px;}
.y5f{bottom:542.894550px;}
.yd0{bottom:543.504600px;}
.y1f7{bottom:545.500650px;}
.y129{bottom:553.952550px;}
.yd{bottom:553.999200px;}
.y88{bottom:554.604600px;}
.yaf{bottom:556.202550px;}
.y1b9{bottom:558.302550px;}
.y119{bottom:559.316550px;}
.y35{bottom:559.751700px;}
.y1da{bottom:563.350650px;}
.y5e{bottom:563.594550px;}
.ycf{bottom:564.504600px;}
.y1f6{bottom:567.752550px;}
.y197{bottom:569.392650px;}
.yf4{bottom:570.742650px;}
.yc{bottom:573.499200px;}
.y87{bottom:575.304450px;}
.y128{bottom:575.702550px;}
.yae{bottom:577.202550px;}
.y1b8{bottom:579.902550px;}
.y34{bottom:580.751700px;}
.y13c{bottom:580.892250px;}
.y118{bottom:582.566550px;}
.y5d{bottom:584.294550px;}
.yce{bottom:585.504600px;}
.y1f5{bottom:585.752550px;}
.y1d9{bottom:585.850650px;}
.y17f{bottom:588.136350px;}
.y196{bottom:590.992650px;}
.yf3{bottom:592.492650px;}
.y16d{bottom:593.235450px;}
.y86{bottom:596.004600px;}
.y127{bottom:597.452550px;}
.y13b{bottom:600.692250px;}
.y21f{bottom:600.984750px;}
.y1b7{bottom:601.502550px;}
.y33{bottom:601.751700px;}
.yad{bottom:602.454600px;}
.y1f4{bottom:603.752550px;}
.y5c{bottom:604.994550px;}
.y117{bottom:605.816550px;}
.ycd{bottom:606.504600px;}
.y17e{bottom:608.311500px;}
.y1d8{bottom:608.350650px;}
.y195{bottom:612.592650px;}
.yb{bottom:612.799200px;}
.y16c{bottom:613.035450px;}
.yf2{bottom:614.242650px;}
.y85{bottom:616.704600px;}
.y21e{bottom:618.984750px;}
.y126{bottom:619.202550px;}
.y1f3{bottom:621.752550px;}
.y32{bottom:622.751700px;}
.y13a{bottom:622.944150px;}
.y1b6{bottom:623.102550px;}
.y5b{bottom:625.694550px;}
.ycc{bottom:627.504600px;}
.y116{bottom:629.066550px;}
.y17d{bottom:630.711750px;}
.y1d7{bottom:630.850650px;}
.yac{bottom:632.454600px;}
.y194{bottom:634.192500px;}
.ya{bottom:634.399200px;}
.yf1{bottom:635.992650px;}
.y21d{bottom:636.984750px;}
.y84{bottom:637.404450px;}
.y1f2{bottom:639.752550px;}
.y125{bottom:640.952550px;}
.y139{bottom:642.444150px;}
.y31{bottom:643.751700px;}
.y16b{bottom:643.760250px;}
.y1b5{bottom:644.702550px;}
.y5a{bottom:646.394550px;}
.ycb{bottom:648.504600px;}
.y115{bottom:652.316550px;}
.y17c{bottom:653.112150px;}
.y1d6{bottom:653.350650px;}
.yab{bottom:654.204600px;}
.y193{bottom:655.792650px;}
.y9{bottom:655.999200px;}
.yf0{bottom:657.742650px;}
.y1f1{bottom:657.752550px;}
.y83{bottom:658.104600px;}
.y21c{bottom:659.236650px;}
.y124{bottom:662.702550px;}
.y30{bottom:664.751700px;}
.y1b4{bottom:666.452550px;}
.y59{bottom:667.094550px;}
.yca{bottom:670.254600px;}
.y113{bottom:675.020850px;}
.yaa{bottom:675.204600px;}
.y17b{bottom:675.512550px;}
.y1d5{bottom:675.850650px;}
.y21b{bottom:677.236650px;}
.y192{bottom:677.392650px;}
.y82{bottom:678.804450px;}
.yef{bottom:679.492650px;}
.y1f0{bottom:680.004600px;}
.y112{bottom:684.020850px;}
.y2f{bottom:685.751700px;}
.y16a{bottom:687.260250px;}
.y58{bottom:687.794550px;}
.y8{bottom:691.699200px;}
.y114{bottom:693.020850px;}
.y17a{bottom:693.512550px;}
.ya9{bottom:696.204600px;}
.y1ef{bottom:698.004600px;}
.y1d4{bottom:698.350650px;}
.y21a{bottom:699.488700px;}
.y81{bottom:699.504600px;}
.y191{bottom:699.892650px;}
.yee{bottom:701.992650px;}
.y2e{bottom:706.751700px;}
.y1b3{bottom:707.454600px;}
.y57{bottom:708.494550px;}
.y123{bottom:710.454600px;}
.y7{bottom:713.299200px;}
.y111{bottom:715.554450px;}
.y178{bottom:715.912950px;}
.ya8{bottom:717.204600px;}
.y219{bottom:717.488700px;}
.y80{bottom:720.204600px;}
.y1d3{bottom:720.850650px;}
.y190{bottom:722.392650px;}
.yed{bottom:724.492650px;}
.y176{bottom:724.912950px;}
.y2d{bottom:727.751700px;}
.y56{bottom:729.194550px;}
.y169{bottom:730.760250px;}
.y175{bottom:733.912950px;}
.y6{bottom:734.899200px;}
.y110{bottom:737.154450px;}
.y1ee{bottom:737.604600px;}
.ya7{bottom:738.204600px;}
.y218{bottom:739.740600px;}
.y7f{bottom:740.904450px;}
.y179{bottom:742.912950px;}
.y1d2{bottom:743.350650px;}
.y18f{bottom:744.892650px;}
.yec{bottom:746.992650px;}
.y2c{bottom:748.751700px;}
.y55{bottom:749.894550px;}
.y1b2{bottom:750.204600px;}
.yc9{bottom:750.504600px;}
.y177{bottom:751.912950px;}
.y122{bottom:753.204600px;}
.y217{bottom:757.740600px;}
.ya6{bottom:759.204600px;}
.y7e{bottom:761.604600px;}
.y1d1{bottom:765.850650px;}
.y18e{bottom:767.392650px;}
.yeb{bottom:769.492650px;}
.y2b{bottom:769.751700px;}
.y54{bottom:770.594550px;}
.y1b1{bottom:771.954600px;}
.yc8{bottom:773.004600px;}
.y168{bottom:774.390450px;}
.y10f{bottom:774.954600px;}
.y216{bottom:775.740600px;}
.ya5{bottom:780.204600px;}
.y5{bottom:781.099200px;}
.y7d{bottom:782.304600px;}
.y174{bottom:782.950500px;}
.y1d0{bottom:788.350650px;}
.y18d{bottom:789.892650px;}
.y2a{bottom:790.751700px;}
.y53{bottom:791.294550px;}
.yea{bottom:791.992650px;}
.y1b0{bottom:793.704600px;}
.y215{bottom:793.740600px;}
.yc7{bottom:795.504600px;}
.y10e{bottom:796.704600px;}
.y173{bottom:800.950500px;}
.ya4{bottom:801.204600px;}
.y7c{bottom:803.004600px;}
.y167{bottom:807.470850px;}
.y4{bottom:809.599200px;}
.y1cf{bottom:810.850650px;}
.y52{bottom:811.994550px;}
.y18c{bottom:812.392650px;}
.y29{bottom:812.501700px;}
.ye9{bottom:814.492650px;}
.y1af{bottom:815.454600px;}
.y214{bottom:815.992650px;}
.yc6{bottom:818.004600px;}
.y10d{bottom:818.454600px;}
.ya3{bottom:822.204600px;}
.y7b{bottom:823.704600px;}
.y166{bottom:825.470850px;}
.y152{bottom:832.135050px;}
.y51{bottom:832.694550px;}
.y213{bottom:833.992650px;}
.y28{bottom:834.251700px;}
.y163{bottom:834.470850px;}
.y18b{bottom:834.892650px;}
.ye8{bottom:836.242650px;}
.y1ae{bottom:837.204600px;}
.y3{bottom:838.099200px;}
.y10c{bottom:840.204600px;}
.yc5{bottom:840.504600px;}
.y1ce{bottom:840.954600px;}
.y172{bottom:842.454600px;}
.ya2{bottom:843.204600px;}
.y165{bottom:843.470850px;}
.y7a{bottom:844.404450px;}
.y212{bottom:851.992650px;}
.y151{bottom:852.734850px;}
.y50{bottom:853.394550px;}
.y27{bottom:856.001700px;}
.y18a{bottom:857.392650px;}
.ye7{bottom:857.992650px;}
.y1ad{bottom:859.704600px;}
.y164{bottom:861.470850px;}
.y10b{bottom:861.954600px;}
.yc4{bottom:862.254600px;}
.ya1{bottom:864.204600px;}
.y79{bottom:865.104450px;}
.y4f{bottom:874.094550px;}
.y211{bottom:874.244550px;}
.y150{bottom:875.984850px;}
.y26{bottom:877.751700px;}
.ye6{bottom:879.742650px;}
.y189{bottom:879.892650px;}
.y1ac{bottom:882.204600px;}
.y10a{bottom:883.704600px;}
.y162{bottom:884.004600px;}
.ya0{bottom:885.204600px;}
.y78{bottom:885.804600px;}
.y210{bottom:892.244550px;}
.y4e{bottom:894.794550px;}
.y14f{bottom:899.234850px;}
.y25{bottom:899.501700px;}
.ye5{bottom:901.492650px;}
.y1ab{bottom:904.704600px;}
.y109{bottom:905.454600px;}
.y161{bottom:905.604450px;}
.y9f{bottom:906.204600px;}
.y77{bottom:906.504600px;}
.y20f{bottom:910.244550px;}
.y24{bottom:921.251700px;}
.y14e{bottom:922.484850px;}
.y76{bottom:927.204600px;}
.y4d{bottom:927.494550px;}
.y20e{bottom:928.244550px;}
.y23{bottom:930.654750px;}
.y1{bottom:965.377200px;}
.h2{height:33.328125px;}
.hc{height:40.664062px;}
.hd{height:41.205853px;}
.h8{height:41.689453px;}
.h10{height:44.730469px;}
.he{height:45.826172px;}
.hf{height:45.858398px;}
.h6{height:47.909180px;}
.ha{height:48.761719px;}
.h7{height:48.796875px;}
.h9{height:49.992188px;}
.h5{height:50.027344px;}
.h3{height:50.400000px;}
.h4{height:56.929688px;}
.hb{height:76.664062px;}
.h11{height:77.689453px;}
.h0{height:1041.732000px;}
.h1{height:1041.750000px;}
.w0{width:722.835000px;}
.w1{width:723.000000px;}
.x0{left:0.000000px;}
.xc{left:80.787450px;}
.x1a{left:82.061250px;}
.x1{left:84.330750px;}
.x14{left:86.197650px;}
.x1f{left:88.039350px;}
.x25{left:91.746900px;}
.x3{left:94.861950px;}
.x1e{left:97.894800px;}
.xf{left:107.787450px;}
.x12{left:109.918350px;}
.x27{left:111.769950px;}
.x23{left:113.474100px;}
.x32{left:114.746250px;}
.x4{left:122.526900px;}
.x1c{left:126.107700px;}
.x5{left:127.177050px;}
.xe{left:134.787450px;}
.x10{left:144.567000px;}
.xa{left:146.476350px;}
.x15{left:158.780100px;}
.x24{left:166.281150px;}
.x2f{left:172.962150px;}
.x9{left:185.516700px;}
.x20{left:188.977050px;}
.x21{left:194.834550px;}
.x29{left:204.573000px;}
.x7{left:207.195600px;}
.x6{left:208.264950px;}
.x28{left:209.872050px;}
.x31{left:213.466650px;}
.x2a{left:217.496550px;}
.x1d{left:224.694600px;}
.x8{left:238.133100px;}
.x30{left:243.942750px;}
.x26{left:253.193250px;}
.xd{left:263.260050px;}
.x13{left:280.180050px;}
.xb{left:291.403650px;}
.x34{left:296.426550px;}
.x33{left:299.092650px;}
.x22{left:314.923200px;}
.x1b{left:318.798150px;}
.x35{left:339.357450px;}
.x2b{left:341.231250px;}
.x11{left:348.457500px;}
.x2{left:352.068750px;}
.x2c{left:353.876400px;}
.x17{left:380.690100px;}
.x16{left:382.825200px;}
.x2d{left:459.649950px;}
.x36{left:480.305700px;}
.x37{left:497.213700px;}
.x2e{left:559.591050px;}
.x18{left:586.001250px;}
.x19{left:596.009700px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:32.000000pt;}
.ls4{letter-spacing:-1.760000pt;}
.ls2{letter-spacing:-0.640000pt;}
.ls5{letter-spacing:-0.586667pt;}
.ls3{letter-spacing:-0.320000pt;}
.ls1{letter-spacing:-0.306667pt;}
.ls0{letter-spacing:0.000000pt;}
.ws4{word-spacing:-16.000000pt;}
.ws0{word-spacing:-15.333333pt;}
.ws1b{word-spacing:-14.666667pt;}
.ws5{word-spacing:-1.088000pt;}
.ws1{word-spacing:0.000000pt;}
.ws2{word-spacing:0.306667pt;}
.ws9{word-spacing:0.320000pt;}
.ws16{word-spacing:0.586667pt;}
.ws6{word-spacing:0.640000pt;}
.ws11{word-spacing:1.760000pt;}
.ws8{word-spacing:7.296000pt;}
.ws7{word-spacing:12.928000pt;}
.ws1c{word-spacing:19.946667pt;}
.ws3{word-spacing:31.218667pt;}
.ws18{word-spacing:91.598400pt;}
.wsa{word-spacing:104.032533pt;}
.ws14{word-spacing:207.844800pt;}
.ws15{word-spacing:208.834133pt;}
.ws17{word-spacing:221.178133pt;}
.ws13{word-spacing:277.656000pt;}
.ws12{word-spacing:299.656000pt;}
.wsc{word-spacing:345.333333pt;}
.wsd{word-spacing:346.322667pt;}
.ws10{word-spacing:358.666667pt;}
.wsb{word-spacing:372.133333pt;}
.wse{word-spacing:372.133867pt;}
.wsf{word-spacing:392.133333pt;}
.ws19{word-spacing:437.397333pt;}
.ws1a{word-spacing:441.332800pt;}
._22{margin-left:-13.107200pt;}
._4b{margin-left:-9.433600pt;}
._a{margin-left:-8.292267pt;}
._3{margin-left:-6.925867pt;}
._15{margin-left:-5.939200pt;}
._0{margin-left:-4.757333pt;}
._7{margin-left:-3.807200pt;}
._2{margin-left:-2.725333pt;}
._1{margin-left:-1.336533pt;}
._6{width:0.996800pt;}
._b{width:2.249867pt;}
._11{width:3.513600pt;}
._12{width:4.492800pt;}
._10{width:5.411733pt;}
._8{width:6.415467pt;}
._5{width:7.979467pt;}
._d{width:8.897867pt;}
._9{width:10.003467pt;}
._c{width:11.677867pt;}
._1a{width:12.702933pt;}
._19{width:13.626667pt;}
._e{width:14.566400pt;}
._17{width:17.203200pt;}
._16{width:18.400000pt;}
._14{width:20.083200pt;}
._f{width:21.881600pt;}
._1b{width:22.771200pt;}
._1c{width:23.712000pt;}
._18{width:24.608000pt;}
._13{width:25.523200pt;}
._1f{width:26.828800pt;}
._20{width:28.588800pt;}
._45{width:29.907200pt;}
._4{width:30.925867pt;}
._1e{width:32.000000pt;}
._49{width:36.192267pt;}
._48{width:37.715200pt;}
._46{width:38.680533pt;}
._47{width:39.904000pt;}
._1d{width:40.793600pt;}
._21{width:42.322133pt;}
._4a{width:44.473600pt;}
._33{width:58.744000pt;}
._25{width:96.682133pt;}
._2a{width:120.107200pt;}
._2b{width:139.845333pt;}
._29{width:149.635733pt;}
._26{width:177.467200pt;}
._34{width:223.689067pt;}
._3c{width:226.569067pt;}
._3a{width:228.666667pt;}
._39{width:230.666667pt;}
._3b{width:231.603200pt;}
._3d{width:242.264533pt;}
._37{width:243.735467pt;}
._36{width:244.989867pt;}
._38{width:282.889067pt;}
._3f{width:298.144000pt;}
._35{width:302.666667pt;}
._30{width:407.789867pt;}
._2e{width:409.525867pt;}
._31{width:421.123200pt;}
._2c{width:427.789867pt;}
._41{width:454.666667pt;}
._43{width:482.079467pt;}
._40{width:530.834667pt;}
._42{width:532.760533pt;}
._2f{width:555.284267pt;}
._44{width:557.060800pt;}
._3e{width:559.480533pt;}
._32{width:568.617600pt;}
._2d{width:575.284267pt;}
._23{width:640.133867pt;}
._24{width:660.133333pt;}
._28{width:776.194133pt;}
._27{width:820.194133pt;}
.fs0{font-size:42.666667pt;}
.fs4{font-size:53.333333pt;}
.fs5{font-size:58.666667pt;}
.fs3{font-size:61.333333pt;}
.fs1{font-size:64.000000pt;}
.fs2{font-size:74.666667pt;}
.y0{bottom:0.000000pt;}
.y2{bottom:33.900533pt;}
.y4c{bottom:68.223733pt;}
.y9e{bottom:68.622667pt;}
.y188{bottom:73.936400pt;}
.y121{bottom:77.198933pt;}
.y75{bottom:77.772933pt;}
.ye4{bottom:78.135600pt;}
.y14d{bottom:80.362000pt;}
.y108{bottom:81.813867pt;}
.y22{bottom:81.951333pt;}
.y1ed{bottom:82.843200pt;}
.y4b{bottom:86.890400pt;}
.y9d{bottom:87.289333pt;}
.y20d{bottom:89.981333pt;}
.y120{bottom:93.198933pt;}
.y187{bottom:93.269733pt;}
.y1aa{bottom:95.860133pt;}
.y74{bottom:96.172933pt;}
.ye3{bottom:97.468933pt;}
.y1cd{bottom:100.268933pt;}
.y14c{bottom:101.028667pt;}
.y107{bottom:101.147200pt;}
.y21{bottom:101.284667pt;}
.y1ec{bottom:102.176533pt;}
.y4a{bottom:105.557067pt;}
.yc3{bottom:107.289333pt;}
.y20c{bottom:107.314667pt;}
.y11f{bottom:110.798933pt;}
.y186{bottom:112.603067pt;}
.y9c{bottom:113.515200pt;}
.y171{bottom:113.607733pt;}
.y160{bottom:113.962667pt;}
.y73{bottom:114.572933pt;}
.y1a9{bottom:115.860133pt;}
.ye2{bottom:116.802267pt;}
.y1cc{bottom:120.268933pt;}
.y106{bottom:120.480533pt;}
.y1eb{bottom:121.509867pt;}
.y14b{bottom:121.695333pt;}
.y49{bottom:124.223733pt;}
.yc2{bottom:126.622667pt;}
.y20b{bottom:127.094133pt;}
.y170{bottom:131.207733pt;}
.y185{bottom:131.936400pt;}
.y20{bottom:132.618000pt;}
.y72{bottom:132.972933pt;}
.y138{bottom:133.281200pt;}
.y15f{bottom:133.296000pt;}
.y1a8{bottom:135.860133pt;}
.ye1{bottom:136.135600pt;}
.y105{bottom:139.813867pt;}
.y1cb{bottom:140.268933pt;}
.y1ea{bottom:140.843200pt;}
.y14a{bottom:142.362000pt;}
.y48{bottom:142.890400pt;}
.y20a{bottom:143.094133pt;}
.y9b{bottom:143.381867pt;}
.yc1{bottom:145.956000pt;}
.y184{bottom:151.269733pt;}
.y71{bottom:151.372933pt;}
.y137{bottom:152.481333pt;}
.y15e{bottom:152.629333pt;}
.ye0{bottom:155.468933pt;}
.y1a7{bottom:155.860133pt;}
.y16f{bottom:156.366800pt;}
.y104{bottom:159.147200pt;}
.y1ca{bottom:160.268933pt;}
.y47{bottom:161.557067pt;}
.y9a{bottom:161.781867pt;}
.y209{bottom:162.873600pt;}
.y149{bottom:163.028667pt;}
.yc0{bottom:169.068933pt;}
.y70{bottom:169.772933pt;}
.y183{bottom:170.603200pt;}
.y1f{bottom:171.018000pt;}
.y15d{bottom:171.962667pt;}
.y16e{bottom:172.366800pt;}
.ydf{bottom:174.802267pt;}
.y1a6{bottom:175.860133pt;}
.y208{bottom:178.873600pt;}
.y1e9{bottom:179.376533pt;}
.y99{bottom:180.181867pt;}
.y46{bottom:180.223733pt;}
.y1c9{bottom:180.268933pt;}
.y148{bottom:185.969333pt;}
.y136{bottom:188.014533pt;}
.y6f{bottom:188.172933pt;}
.y103{bottom:189.147200pt;}
.y15c{bottom:191.296000pt;}
.y1e{bottom:192.130800pt;}
.yde{bottom:194.802267pt;}
.ybf{bottom:195.735600pt;}
.y1a5{bottom:195.860133pt;}
.y98{bottom:198.581733pt;}
.y207{bottom:198.653200pt;}
.y45{bottom:198.890400pt;}
.y1c8{bottom:200.268933pt;}
.y182{bottom:204.603200pt;}
.y6e{bottom:206.572933pt;}
.y135{bottom:208.850533pt;}
.y1d{bottom:211.330800pt;}
.ybe{bottom:214.402267pt;}
.y206{bottom:214.653200pt;}
.ydd{bottom:214.802267pt;}
.y1a4{bottom:215.860133pt;}
.y147{bottom:216.210000pt;}
.y97{bottom:216.981867pt;}
.y44{bottom:217.557067pt;}
.y1e8{bottom:217.776533pt;}
.y1c7{bottom:220.268933pt;}
.y6d{bottom:224.972933pt;}
.y102{bottom:227.547200pt;}
.y134{bottom:229.686400pt;}
.y181{bottom:229.762267pt;}
.y205{bottom:230.653200pt;}
.y146{bottom:232.210000pt;}
.y1c{bottom:232.443733pt;}
.ybd{bottom:233.068933pt;}
.ydc{bottom:233.468933pt;}
.y15b{bottom:233.608933pt;}
.y96{bottom:235.381733pt;}
.y1a3{bottom:235.860133pt;}
.y43{bottom:236.223733pt;}
.y1e7{bottom:237.776533pt;}
.y1c6{bottom:240.268933pt;}
.y6c{bottom:243.372933pt;}
.y180{bottom:245.762267pt;}
.y101{bottom:246.213867pt;}
.y1b{bottom:249.777067pt;}
.y204{bottom:250.432800pt;}
.y133{bottom:250.522400pt;}
.ybc{bottom:251.735600pt;}
.ydb{bottom:252.135600pt;}
.y95{bottom:253.781867pt;}
.y42{bottom:254.890400pt;}
.y1a2{bottom:255.860133pt;}
.y1e6{bottom:257.776533pt;}
.y1c5{bottom:260.268933pt;}
.y6b{bottom:261.772933pt;}
.y100{bottom:264.880533pt;}
.y203{bottom:266.432800pt;}
.y1a{bottom:267.110400pt;}
.ybb{bottom:270.402267pt;}
.yda{bottom:270.802267pt;}
.y132{bottom:271.358267pt;}
.y15a{bottom:271.475600pt;}
.y145{bottom:271.769067pt;}
.y94{bottom:272.181867pt;}
.y41{bottom:273.557067pt;}
.y1a1{bottom:274.526800pt;}
.y1e5{bottom:277.776533pt;}
.y6a{bottom:280.172933pt;}
.y1c4{bottom:280.268933pt;}
.yff{bottom:283.547200pt;}
.y19{bottom:284.443733pt;}
.y202{bottom:286.212267pt;}
.yba{bottom:289.068933pt;}
.yd9{bottom:289.468933pt;}
.y93{bottom:290.581733pt;}
.y159{bottom:290.808933pt;}
.y144{bottom:290.969067pt;}
.y131{bottom:292.194267pt;}
.y40{bottom:292.223733pt;}
.y1a0{bottom:293.860133pt;}
.y1e4{bottom:297.776533pt;}
.y69{bottom:298.572933pt;}
.y1c3{bottom:300.268933pt;}
.y18{bottom:301.777067pt;}
.y201{bottom:302.212267pt;}
.yfe{bottom:302.213867pt;}
.yb9{bottom:307.735600pt;}
.yd8{bottom:308.135600pt;}
.y92{bottom:308.981867pt;}
.y158{bottom:310.142267pt;}
.y143{bottom:310.169067pt;}
.y3f{bottom:310.890400pt;}
.y130{bottom:313.030133pt;}
.y19f{bottom:313.193467pt;}
.y68{bottom:316.972933pt;}
.y1e3{bottom:317.776533pt;}
.y17{bottom:319.110400pt;}
.y1c2{bottom:320.268933pt;}
.yfd{bottom:320.880533pt;}
.y200{bottom:321.991733pt;}
.yb8{bottom:326.402267pt;}
.yd7{bottom:327.335600pt;}
.y91{bottom:327.381733pt;}
.y142{bottom:329.369067pt;}
.y157{bottom:329.475600pt;}
.y3e{bottom:329.557067pt;}
.y19e{bottom:332.526800pt;}
.y12f{bottom:333.866133pt;}
.y67{bottom:335.372933pt;}
.y16{bottom:336.443733pt;}
.y1e2{bottom:337.776533pt;}
.y1ff{bottom:337.991733pt;}
.yfc{bottom:339.547200pt;}
.y1c1{bottom:340.268933pt;}
.yb7{bottom:345.068933pt;}
.y90{bottom:345.781867pt;}
.yd6{bottom:346.668933pt;}
.y3d{bottom:348.223733pt;}
.y141{bottom:348.569067pt;}
.y156{bottom:348.808933pt;}
.y19d{bottom:351.860133pt;}
.y66{bottom:353.772933pt;}
.y15{bottom:353.777067pt;}
.y12e{bottom:354.702133pt;}
.y1fe{bottom:357.771333pt;}
.y1e1{bottom:357.776533pt;}
.yfb{bottom:358.213867pt;}
.y1c0{bottom:360.268933pt;}
.yb6{bottom:363.735600pt;}
.y8f{bottom:364.181867pt;}
.yd5{bottom:366.002267pt;}
.y3c{bottom:366.890400pt;}
.y140{bottom:367.769067pt;}
.y14{bottom:371.110400pt;}
.y19c{bottom:371.193467pt;}
.y65{bottom:372.172933pt;}
.y1fd{bottom:373.771333pt;}
.yfa{bottom:377.547200pt;}
.y1e0{bottom:377.776533pt;}
.y1bf{bottom:380.268933pt;}
.yb5{bottom:382.402267pt;}
.y8e{bottom:382.581733pt;}
.y12d{bottom:383.080533pt;}
.yd4{bottom:385.335600pt;}
.y3b{bottom:385.557067pt;}
.y155{bottom:387.342267pt;}
.y13{bottom:388.443733pt;}
.y19b{bottom:390.526800pt;}
.y64{bottom:390.572933pt;}
.y1fc{bottom:393.550800pt;}
.yf9{bottom:396.880533pt;}
.y11e{bottom:397.685200pt;}
.y1df{bottom:397.776533pt;}
.y1be{bottom:400.268933pt;}
.y8d{bottom:400.981867pt;}
.yb4{bottom:401.068933pt;}
.y3a{bottom:404.223733pt;}
.y154{bottom:404.942267pt;}
.y12{bottom:405.777067pt;}
.yd3{bottom:408.448533pt;}
.y63{bottom:408.972933pt;}
.y1fb{bottom:409.550800pt;}
.y19a{bottom:409.860133pt;}
.y11d{bottom:414.503600pt;}
.y12c{bottom:415.335600pt;}
.yf8{bottom:416.213867pt;}
.y1de{bottom:417.776533pt;}
.y8c{bottom:419.381733pt;}
.y1bd{bottom:419.468933pt;}
.yb3{bottom:419.735600pt;}
.y39{bottom:422.890400pt;}
.y11{bottom:423.110400pt;}
.y153{bottom:424.142267pt;}
.y13f{bottom:425.369067pt;}
.y62{bottom:427.372933pt;}
.y199{bottom:429.193467pt;}
.y1fa{bottom:429.330400pt;}
.y12b{bottom:434.535600pt;}
.y11c{bottom:435.170267pt;}
.yf7{bottom:435.547200pt;}
.y8b{bottom:437.781867pt;}
.yb2{bottom:438.402267pt;}
.y1bc{bottom:438.668933pt;}
.y10{bottom:440.443733pt;}
.y1dd{bottom:440.756000pt;}
.y38{bottom:441.557067pt;}
.y13e{bottom:444.702400pt;}
.y1f9{bottom:445.330400pt;}
.y61{bottom:445.772933pt;}
.yd2{bottom:445.781867pt;}
.yf6{bottom:454.880533pt;}
.y11b{bottom:455.836933pt;}
.y8a{bottom:456.181867pt;}
.yb1{bottom:457.068933pt;}
.yf{bottom:457.777067pt;}
.y1bb{bottom:457.868933pt;}
.y37{bottom:460.223733pt;}
.y1dc{bottom:460.756000pt;}
.y60{bottom:464.172933pt;}
.yd1{bottom:464.448533pt;}
.y1f8{bottom:465.109867pt;}
.y198{bottom:467.726800pt;}
.y12a{bottom:473.068933pt;}
.y89{bottom:474.581733pt;}
.ye{bottom:475.110400pt;}
.yb0{bottom:475.735600pt;}
.y11a{bottom:476.503600pt;}
.y1ba{bottom:477.068933pt;}
.yf5{bottom:477.993467pt;}
.y13d{bottom:478.482000pt;}
.y36{bottom:478.890400pt;}
.y1db{bottom:480.756000pt;}
.y5f{bottom:482.572933pt;}
.yd0{bottom:483.115200pt;}
.y1f7{bottom:484.889467pt;}
.y129{bottom:492.402267pt;}
.yd{bottom:492.443733pt;}
.y88{bottom:492.981867pt;}
.yaf{bottom:494.402267pt;}
.y1b9{bottom:496.268933pt;}
.y119{bottom:497.170267pt;}
.y35{bottom:497.557067pt;}
.y1da{bottom:500.756133pt;}
.y5e{bottom:500.972933pt;}
.ycf{bottom:501.781867pt;}
.y1f6{bottom:504.668933pt;}
.y197{bottom:506.126800pt;}
.yf4{bottom:507.326800pt;}
.yc{bottom:509.777067pt;}
.y87{bottom:511.381733pt;}
.y128{bottom:511.735600pt;}
.yae{bottom:513.068933pt;}
.y1b8{bottom:515.468933pt;}
.y34{bottom:516.223733pt;}
.y13c{bottom:516.348667pt;}
.y118{bottom:517.836933pt;}
.y5d{bottom:519.372933pt;}
.yce{bottom:520.448533pt;}
.y1f5{bottom:520.668933pt;}
.y1d9{bottom:520.756133pt;}
.y17f{bottom:522.787867pt;}
.y196{bottom:525.326800pt;}
.yf3{bottom:526.660133pt;}
.y16d{bottom:527.320400pt;}
.y86{bottom:529.781867pt;}
.y127{bottom:531.068933pt;}
.y13b{bottom:533.948667pt;}
.y21f{bottom:534.208667pt;}
.y1b7{bottom:534.668933pt;}
.y33{bottom:534.890400pt;}
.yad{bottom:535.515200pt;}
.y1f4{bottom:536.668933pt;}
.y5c{bottom:537.772933pt;}
.y117{bottom:538.503600pt;}
.ycd{bottom:539.115200pt;}
.y17e{bottom:540.721333pt;}
.y1d8{bottom:540.756133pt;}
.y195{bottom:544.526800pt;}
.yb{bottom:544.710400pt;}
.y16c{bottom:544.920400pt;}
.yf2{bottom:545.993467pt;}
.y85{bottom:548.181867pt;}
.y21e{bottom:550.208667pt;}
.y126{bottom:550.402267pt;}
.y1f3{bottom:552.668933pt;}
.y32{bottom:553.557067pt;}
.y13a{bottom:553.728133pt;}
.y1b6{bottom:553.868933pt;}
.y5b{bottom:556.172933pt;}
.ycc{bottom:557.781867pt;}
.y116{bottom:559.170267pt;}
.y17d{bottom:560.632667pt;}
.y1d7{bottom:560.756133pt;}
.yac{bottom:562.181867pt;}
.y194{bottom:563.726667pt;}
.ya{bottom:563.910400pt;}
.yf1{bottom:565.326800pt;}
.y21d{bottom:566.208667pt;}
.y84{bottom:566.581733pt;}
.y1f2{bottom:568.668933pt;}
.y125{bottom:569.735600pt;}
.y139{bottom:571.061467pt;}
.y31{bottom:572.223733pt;}
.y16b{bottom:572.231333pt;}
.y1b5{bottom:573.068933pt;}
.y5a{bottom:574.572933pt;}
.ycb{bottom:576.448533pt;}
.y115{bottom:579.836933pt;}
.y17c{bottom:580.544133pt;}
.y1d6{bottom:580.756133pt;}
.yab{bottom:581.515200pt;}
.y193{bottom:582.926800pt;}
.y9{bottom:583.110400pt;}
.yf0{bottom:584.660133pt;}
.y1f1{bottom:584.668933pt;}
.y83{bottom:584.981867pt;}
.y21c{bottom:585.988133pt;}
.y124{bottom:589.068933pt;}
.y30{bottom:590.890400pt;}
.y1b4{bottom:592.402267pt;}
.y59{bottom:592.972933pt;}
.yca{bottom:595.781867pt;}
.y113{bottom:600.018533pt;}
.yaa{bottom:600.181867pt;}
.y17b{bottom:600.455600pt;}
.y1d5{bottom:600.756133pt;}
.y21b{bottom:601.988133pt;}
.y192{bottom:602.126800pt;}
.y82{bottom:603.381733pt;}
.yef{bottom:603.993467pt;}
.y1f0{bottom:604.448533pt;}
.y112{bottom:608.018533pt;}
.y2f{bottom:609.557067pt;}
.y16a{bottom:610.898000pt;}
.y58{bottom:611.372933pt;}
.y8{bottom:614.843733pt;}
.y114{bottom:616.018533pt;}
.y17a{bottom:616.455600pt;}
.ya9{bottom:618.848533pt;}
.y1ef{bottom:620.448533pt;}
.y1d4{bottom:620.756133pt;}
.y21a{bottom:621.767733pt;}
.y81{bottom:621.781867pt;}
.y191{bottom:622.126800pt;}
.yee{bottom:623.993467pt;}
.y2e{bottom:628.223733pt;}
.y1b3{bottom:628.848533pt;}
.y57{bottom:629.772933pt;}
.y123{bottom:631.515200pt;}
.y7{bottom:634.043733pt;}
.y111{bottom:636.048400pt;}
.y178{bottom:636.367067pt;}
.ya8{bottom:637.515200pt;}
.y219{bottom:637.767733pt;}
.y80{bottom:640.181867pt;}
.y1d3{bottom:640.756133pt;}
.y190{bottom:642.126800pt;}
.yed{bottom:643.993467pt;}
.y176{bottom:644.367067pt;}
.y2d{bottom:646.890400pt;}
.y56{bottom:648.172933pt;}
.y169{bottom:649.564667pt;}
.y175{bottom:652.367067pt;}
.y6{bottom:653.243733pt;}
.y110{bottom:655.248400pt;}
.y1ee{bottom:655.648533pt;}
.ya7{bottom:656.181867pt;}
.y218{bottom:657.547200pt;}
.y7f{bottom:658.581733pt;}
.y179{bottom:660.367067pt;}
.y1d2{bottom:660.756133pt;}
.y18f{bottom:662.126800pt;}
.yec{bottom:663.993467pt;}
.y2c{bottom:665.557067pt;}
.y55{bottom:666.572933pt;}
.y1b2{bottom:666.848533pt;}
.yc9{bottom:667.115200pt;}
.y177{bottom:668.367067pt;}
.y122{bottom:669.515200pt;}
.y217{bottom:673.547200pt;}
.ya6{bottom:674.848533pt;}
.y7e{bottom:676.981867pt;}
.y1d1{bottom:680.756133pt;}
.y18e{bottom:682.126800pt;}
.yeb{bottom:683.993467pt;}
.y2b{bottom:684.223733pt;}
.y54{bottom:684.972933pt;}
.y1b1{bottom:686.181867pt;}
.yc8{bottom:687.115200pt;}
.y168{bottom:688.347067pt;}
.y10f{bottom:688.848533pt;}
.y216{bottom:689.547200pt;}
.ya5{bottom:693.515200pt;}
.y5{bottom:694.310400pt;}
.y7d{bottom:695.381867pt;}
.y174{bottom:695.956000pt;}
.y1d0{bottom:700.756133pt;}
.y18d{bottom:702.126800pt;}
.y2a{bottom:702.890400pt;}
.y53{bottom:703.372933pt;}
.yea{bottom:703.993467pt;}
.y1b0{bottom:705.515200pt;}
.y215{bottom:705.547200pt;}
.yc7{bottom:707.115200pt;}
.y10e{bottom:708.181867pt;}
.y173{bottom:711.956000pt;}
.ya4{bottom:712.181867pt;}
.y7c{bottom:713.781867pt;}
.y167{bottom:717.751867pt;}
.y4{bottom:719.643733pt;}
.y1cf{bottom:720.756133pt;}
.y52{bottom:721.772933pt;}
.y18c{bottom:722.126800pt;}
.y29{bottom:722.223733pt;}
.ye9{bottom:723.993467pt;}
.y1af{bottom:724.848533pt;}
.y214{bottom:725.326800pt;}
.yc6{bottom:727.115200pt;}
.y10d{bottom:727.515200pt;}
.ya3{bottom:730.848533pt;}
.y7b{bottom:732.181867pt;}
.y166{bottom:733.751867pt;}
.y152{bottom:739.675600pt;}
.y51{bottom:740.172933pt;}
.y213{bottom:741.326800pt;}
.y28{bottom:741.557067pt;}
.y163{bottom:741.751867pt;}
.y18b{bottom:742.126800pt;}
.ye8{bottom:743.326800pt;}
.y1ae{bottom:744.181867pt;}
.y3{bottom:744.977067pt;}
.y10c{bottom:746.848533pt;}
.yc5{bottom:747.115200pt;}
.y1ce{bottom:747.515200pt;}
.y172{bottom:748.848533pt;}
.ya2{bottom:749.515200pt;}
.y165{bottom:749.751867pt;}
.y7a{bottom:750.581733pt;}
.y212{bottom:757.326800pt;}
.y151{bottom:757.986533pt;}
.y50{bottom:758.572933pt;}
.y27{bottom:760.890400pt;}
.y18a{bottom:762.126800pt;}
.ye7{bottom:762.660133pt;}
.y1ad{bottom:764.181867pt;}
.y164{bottom:765.751867pt;}
.y10b{bottom:766.181867pt;}
.yc4{bottom:766.448533pt;}
.ya1{bottom:768.181867pt;}
.y79{bottom:768.981733pt;}
.y4f{bottom:776.972933pt;}
.y211{bottom:777.106267pt;}
.y150{bottom:778.653200pt;}
.y26{bottom:780.223733pt;}
.ye6{bottom:781.993467pt;}
.y189{bottom:782.126800pt;}
.y1ac{bottom:784.181867pt;}
.y10a{bottom:785.515200pt;}
.y162{bottom:785.781867pt;}
.ya0{bottom:786.848533pt;}
.y78{bottom:787.381867pt;}
.y210{bottom:793.106267pt;}
.y4e{bottom:795.372933pt;}
.y14f{bottom:799.319867pt;}
.y25{bottom:799.557067pt;}
.ye5{bottom:801.326800pt;}
.y1ab{bottom:804.181867pt;}
.y109{bottom:804.848533pt;}
.y161{bottom:804.981733pt;}
.y9f{bottom:805.515200pt;}
.y77{bottom:805.781867pt;}
.y20f{bottom:809.106267pt;}
.y24{bottom:818.890400pt;}
.y14e{bottom:819.986533pt;}
.y76{bottom:824.181867pt;}
.y4d{bottom:824.439600pt;}
.y20e{bottom:825.106267pt;}
.y23{bottom:827.248667pt;}
.y1{bottom:858.113067pt;}
.h2{height:29.625000pt;}
.hc{height:36.145833pt;}
.hd{height:36.627425pt;}
.h8{height:37.057292pt;}
.h10{height:39.760417pt;}
.he{height:40.734375pt;}
.hf{height:40.763021pt;}
.h6{height:42.585938pt;}
.ha{height:43.343750pt;}
.h7{height:43.375000pt;}
.h9{height:44.437500pt;}
.h5{height:44.468750pt;}
.h3{height:44.800000pt;}
.h4{height:50.604167pt;}
.hb{height:68.145833pt;}
.h11{height:69.057292pt;}
.h0{height:925.984000pt;}
.h1{height:926.000000pt;}
.w0{width:642.520000pt;}
.w1{width:642.666667pt;}
.x0{left:0.000000pt;}
.xc{left:71.811067pt;}
.x1a{left:72.943333pt;}
.x1{left:74.960667pt;}
.x14{left:76.620133pt;}
.x1f{left:78.257200pt;}
.x25{left:81.552800pt;}
.x3{left:84.321733pt;}
.x1e{left:87.017600pt;}
.xf{left:95.811067pt;}
.x12{left:97.705200pt;}
.x27{left:99.351067pt;}
.x23{left:100.865867pt;}
.x32{left:101.996667pt;}
.x4{left:108.912800pt;}
.x1c{left:112.095733pt;}
.x5{left:113.046267pt;}
.xe{left:119.811067pt;}
.x10{left:128.504000pt;}
.xa{left:130.201200pt;}
.x15{left:141.137867pt;}
.x24{left:147.805467pt;}
.x2f{left:153.744133pt;}
.x9{left:164.903733pt;}
.x20{left:167.979600pt;}
.x21{left:173.186267pt;}
.x29{left:181.842667pt;}
.x7{left:184.173867pt;}
.x6{left:185.124400pt;}
.x28{left:186.552933pt;}
.x31{left:189.748133pt;}
.x2a{left:193.330267pt;}
.x1d{left:199.728533pt;}
.x8{left:211.673867pt;}
.x30{left:216.838000pt;}
.x26{left:225.060667pt;}
.xd{left:234.008933pt;}
.x13{left:249.048933pt;}
.xb{left:259.025467pt;}
.x34{left:263.490267pt;}
.x33{left:265.860133pt;}
.x22{left:279.931733pt;}
.x1b{left:283.376133pt;}
.x35{left:301.651067pt;}
.x2b{left:303.316667pt;}
.x11{left:309.740000pt;}
.x2{left:312.950000pt;}
.x2c{left:314.556800pt;}
.x17{left:338.391200pt;}
.x16{left:340.289067pt;}
.x2d{left:408.577733pt;}
.x36{left:426.938400pt;}
.x37{left:441.967733pt;}
.x2e{left:497.414267pt;}
.x18{left:520.890000pt;}
.x19{left:529.786400pt;}
}




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