
    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_1c9536812c80e823f8b19ee2.woff')format("woff");}.ff1{font-family:ff1;line-height:0.929199;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_d049ecd7f4cc3ed0d17d2518.woff')format("woff");}.ff2{font-family:ff2;line-height:0.939941;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_a3cd36e0778574bbd67a0cd8.woff')format("woff");}.ff3{font-family:ff3;line-height:0.800781;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_9e9b1d61ec91ff2028c9e82d.woff')format("woff");}.ff4{font-family:ff4;line-height:0.921875;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_f786a41abe2c2540916a829f.woff')format("woff");}.ff5{font-family:ff5;line-height:1.003906;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_b1be769a884b1a906a3fad1f.woff')format("woff");}.ff6{font-family:ff6;line-height:0.914062;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_02fed03a128b2bba17d2b2ae.woff')format("woff");}.ff7{font-family:ff7;line-height:0.739746;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_33765ff2b99c8620b0e4f36b.woff')format("woff");}.ff8{font-family:ff8;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_6c9319e50e4c5d0a53275311.woff')format("woff");}.ff9{font-family:ff9;line-height:0.886230;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;}
.ls1{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.055021px;}
.lsc{letter-spacing:0.136350px;}
.ls9{letter-spacing:0.293324px;}
.lsa{letter-spacing:0.329755px;}
.ls7{letter-spacing:0.466646px;}
.lsd{letter-spacing:0.466651px;}
.lsb{letter-spacing:0.856229px;}
.lse{letter-spacing:0.856368px;}
.ls5{letter-spacing:1.186664px;}
.ls3{letter-spacing:1.906547px;}
.ls4{letter-spacing:7.666678px;}
.ls6{letter-spacing:12.706655px;}
.ls2{letter-spacing:31.213773px;}
.ls8{letter-spacing:64.117883px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
.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;}
.sc1{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws5{word-spacing:-59.646600px;}
.ws3{word-spacing:-18.308388px;}
.ws1{word-spacing:-18.253367px;}
.ws0{word-spacing:-16.793070px;}
.ws2{word-spacing:-16.744230px;}
.ws4{word-spacing:0.000000px;}
._28{margin-left:-2.126283px;}
._1{margin-left:-1.003080px;}
._0{width:1.455750px;}
._7{width:2.658394px;}
._6{width:4.131419px;}
._17{width:5.939188px;}
._3{width:7.707096px;}
._2{width:8.804981px;}
._15{width:9.848610px;}
._1a{width:10.990978px;}
._b{width:12.128956px;}
._1e{width:13.285844px;}
._1b{width:14.294486px;}
._9{width:15.321143px;}
._a{width:16.378221px;}
._29{width:19.131220px;}
._e{width:20.158877px;}
._1c{width:21.436141px;}
._1d{width:22.922971px;}
._27{width:24.701295px;}
._24{width:25.995603px;}
._21{width:27.219761px;}
._c{width:28.243869px;}
._d{width:29.394760px;}
._26{width:30.417413px;}
._1f{width:31.622813px;}
._20{width:33.013279px;}
._5{width:34.862699px;}
._4{width:35.897858px;}
._18{width:37.207405px;}
._19{width:38.690814px;}
._2d{width:40.127317px;}
._32{width:42.905968px;}
._22{width:45.058228px;}
._8{width:48.527895px;}
._2c{width:49.578287px;}
._25{width:51.113207px;}
._16{width:52.423691px;}
._23{width:68.161830px;}
._2f{width:74.003328px;}
._2e{width:75.078706px;}
._30{width:76.101921px;}
._f{width:95.318099px;}
._2b{width:104.967023px;}
._2a{width:106.071430px;}
._12{width:115.524186px;}
._10{width:118.088640px;}
._11{width:198.846720px;}
._13{width:200.283993px;}
._31{width:201.727543px;}
._14{width:690.545544px;}
.fc4{color:transparent;}
.fc3{color:rgb(238,236,225);}
.fc2{color:rgb(68,68,170);}
.fc1{color:rgb(0,32,96);}
.fc0{color:rgb(0,0,0);}
.fs2{font-size:59.646600px;}
.fs3{font-size:66.114450px;}
.fs1{font-size:71.863650px;}
.fs0{font-size:84.080250px;}
.fs4{font-size:143.727300px;}
.y0{bottom:0.000000px;}
.y50{bottom:3.600013px;}
.yf{bottom:3.779983px;}
.y19{bottom:3.779984px;}
.y21{bottom:3.780017px;}
.y1c{bottom:3.780018px;}
.yc{bottom:3.780052px;}
.y11{bottom:3.780053px;}
.y3d{bottom:4.139991px;}
.y2b{bottom:4.139992px;}
.y41{bottom:4.140000px;}
.y57{bottom:4.140009px;}
.y32{bottom:4.140060px;}
.y2{bottom:4.859999px;}
.y7{bottom:4.860008px;}
.y15{bottom:8.279983px;}
.y3f{bottom:8.280001px;}
.y13{bottom:8.280018px;}
.y10{bottom:54.179970px;}
.y46{bottom:57.960022px;}
.ye{bottom:73.259994px;}
.yd{bottom:77.039977px;}
.y5c{bottom:81.179970px;}
.yb{bottom:92.159981px;}
.ya{bottom:111.240006px;}
.yc4{bottom:112.320030px;}
.ya5{bottom:113.220017px;}
.y156{bottom:115.200027px;}
.y137{bottom:118.440033px;}
.y1d1{bottom:125.820030px;}
.yf9{bottom:129.600013px;}
.yc3{bottom:133.559967px;}
.ya4{bottom:133.919975px;}
.y82{bottom:134.460022px;}
.y117{bottom:138.779983px;}
.y136{bottom:139.139992px;}
.y1d0{bottom:146.519989px;}
.y175{bottom:150.299973px;}
.y1b3{bottom:151.019989px;}
.ydd{bottom:153.720017px;}
.yc2{bottom:154.259994px;}
.y81{bottom:155.159981px;}
.y155{bottom:157.500000px;}
.y116{bottom:159.480011px;}
.y135{bottom:159.840019px;}
.y3c{bottom:170.460022px;}
.y174{bottom:171.179970px;}
.yf8{bottom:171.899986px;}
.y3b{bottom:174.600013px;}
.yc1{bottom:175.139992px;}
.ya3{bottom:175.500000px;}
.y80{bottom:175.860008px;}
.y197{bottom:178.200027px;}
.y134{bottom:180.720017px;}
.y1cf{bottom:182.340019px;}
.y3a{bottom:191.159981px;}
.y173{bottom:191.879998px;}
.y39{bottom:195.299973px;}
.yc0{bottom:195.840019px;}
.y7f{bottom:196.740006px;}
.y196{bottom:198.899986px;}
.y154{bottom:199.259994px;}
.y115{bottom:202.860008px;}
.y1ce{bottom:203.220017px;}
.y1b2{bottom:207.539977px;}
.y38{bottom:212.039977px;}
.y172{bottom:212.580025px;}
.yf7{bottom:214.200027px;}
.ydc{bottom:216.000000px;}
.y37{bottom:216.179970px;}
.ybf{bottom:216.720017px;}
.y7e{bottom:217.440033px;}
.ya2{bottom:217.980011px;}
.y195{bottom:219.779983px;}
.y153{bottom:220.320030px;}
.y133{bottom:225.539977px;}
.y1b1{bottom:228.419975px;}
.y36{bottom:232.740006px;}
.y171{bottom:233.460022px;}
.yf6{bottom:234.899986px;}
.ydb{bottom:236.879998px;}
.ybe{bottom:237.419975px;}
.y7d{bottom:238.320030px;}
.ya1{bottom:238.860008px;}
.y152{bottom:241.200027px;}
.y114{bottom:242.279983px;}
.y1b0{bottom:249.120002px;}
.y35{bottom:253.620002px;}
.y170{bottom:254.159981px;}
.yf5{bottom:255.779983px;}
.yda{bottom:257.580025px;}
.y194{bottom:258.840019px;}
.y7c{bottom:259.019989px;}
.ya0{bottom:259.559967px;}
.y1cd{bottom:259.740006px;}
.y113{bottom:266.399986px;}
.y132{bottom:268.019989px;}
.y34{bottom:274.320030px;}
.yf4{bottom:276.480011px;}
.yd9{bottom:278.279983px;}
.y33{bottom:278.460022px;}
.ybd{bottom:279.000000px;}
.y9f{bottom:280.440033px;}
.y151{bottom:282.960022px;}
.y1af{bottom:284.940033px;}
.y131{bottom:288.720017px;}
.y112{bottom:290.159981px;}
.y16f{bottom:292.679970px;}
.y31{bottom:295.559967px;}
.y193{bottom:298.259994px;}
.y30{bottom:299.700027px;}
.y7b{bottom:300.779983px;}
.y9e{bottom:301.139992px;}
.y1ae{bottom:305.639992px;}
.y130{bottom:309.419975px;}
.y1cc{bottom:316.259994px;}
.y2f{bottom:316.620002px;}
.yf3{bottom:318.240006px;}
.y52{bottom:320.759994px;}
.ybc{bottom:321.480011px;}
.y7a{bottom:321.659981px;}
.y9d{bottom:322.019989px;}
.y150{bottom:326.159981px;}
.y111{bottom:329.039977px;}
.y12f{bottom:330.299973px;}
.y16e{bottom:335.159981px;}
.y1cb{bottom:336.960022px;}
.y2e{bottom:337.320030px;}
.y192{bottom:337.500000px;}
.y1ad{bottom:341.460022px;}
.ybb{bottom:342.179970px;}
.y79{bottom:342.360008px;}
.y9c{bottom:342.720017px;}
.y12e{bottom:351.000000px;}
.y16d{bottom:356.039977px;}
.y2d{bottom:358.200027px;}
.yf2{bottom:360.899986px;}
.y2c{bottom:362.340019px;}
.yd8{bottom:362.519989px;}
.yba{bottom:363.059967px;}
.y78{bottom:363.240006px;}
.y9b{bottom:363.600013px;}
.y110{bottom:368.460022px;}
.y14f{bottom:368.639992px;}
.y1ca{bottom:372.779983px;}
.y16c{bottom:376.740006px;}
.y191{bottom:376.919975px;}
.y2a{bottom:379.080025px;}
.yf1{bottom:381.779983px;}
.y51{bottom:383.220017px;}
.yb9{bottom:383.759994px;}
.y77{bottom:383.940033px;}
.y14e{bottom:389.340019px;}
.y10f{bottom:392.399986px;}
.y12d{bottom:396.000000px;}
.y16b{bottom:397.440033px;}
.y190{bottom:397.620002px;}
.y1ac{bottom:397.980011px;}
.yf0{bottom:402.840019px;}
.y76{bottom:404.639992px;}
.y9a{bottom:405.000000px;}
.y1c9{bottom:408.600013px;}
.y14d{bottom:410.220017px;}
.y10e{bottom:416.340019px;}
.y18f{bottom:418.500000px;}
.y1ab{bottom:418.860008px;}
.yef{bottom:424.080025px;}
.y29{bottom:424.620002px;}
.yb8{bottom:425.340019px;}
.y75{bottom:425.519989px;}
.yd7{bottom:425.879998px;}
.y1c8{bottom:429.299973px;}
.y14c{bottom:431.100013px;}
.y12c{bottom:438.299973px;}
.y18e{bottom:439.200027px;}
.y10d{bottom:440.279983px;}
.y16a{bottom:440.820030px;}
.yb7{bottom:446.039977px;}
.y74{bottom:446.220017px;}
.yd6{bottom:446.580025px;}
.y99{bottom:447.480011px;}
.y14b{bottom:451.799973px;}
.y1aa{bottom:454.679970px;}
.y12b{bottom:459.000000px;}
.y18d{bottom:460.080025px;}
.y28{bottom:463.500000px;}
.y4f{bottom:463.679970px;}
.y1c7{bottom:465.120002px;}
.yee{bottom:465.840019px;}
.y73{bottom:467.100013px;}
.y27{bottom:467.279983px;}
.yd5{bottom:467.460022px;}
.y98{bottom:468.360008px;}
.y1a9{bottom:475.379998px;}
.y10c{bottom:475.740006px;}
.y12a{bottom:479.879998px;}
.y18c{bottom:480.779983px;}
.y169{bottom:483.299973px;}
.y1c6{bottom:486.000000px;}
.y4e{bottom:486.899986px;}
.yb6{bottom:487.620002px;}
.y72{bottom:487.799973px;}
.yd4{bottom:488.159981px;}
.y97{bottom:489.059967px;}
.y1a8{bottom:496.080025px;}
.y14a{bottom:496.799973px;}
.y129{bottom:500.580025px;}
.y18b{bottom:501.659981px;}
.y168{bottom:504.000000px;}
.y1c5{bottom:506.700027px;}
.yed{bottom:507.419975px;}
.yd3{bottom:508.860008px;}
.y26{bottom:509.399986px;}
.y96{bottom:509.940033px;}
.y10b{bottom:515.340019px;}
.y128{bottom:521.460022px;}
.y18a{bottom:522.360008px;}
.y167{bottom:524.879998px;}
.y4d{bottom:528.480011px;}
.y71{bottom:529.559967px;}
.yb5{bottom:530.100013px;}
.y95{bottom:530.639992px;}
.y1a7{bottom:531.899986px;}
.y10a{bottom:536.039977px;}
.y149{bottom:539.100013px;}
.y127{bottom:542.159981px;}
.y1c4{bottom:542.519989px;}
.y189{bottom:543.059967px;}
.y25{bottom:543.779983px;}
.y166{bottom:546.120002px;}
.y24{bottom:547.559967px;}
.yec{bottom:549.899986px;}
.y70{bottom:550.440033px;}
.yd2{bottom:550.799973px;}
.yb4{bottom:550.980011px;}
.y94{bottom:551.519989px;}
.y1a6{bottom:552.779983px;}
.y109{bottom:556.919975px;}
.y148{bottom:559.980011px;}
.y23{bottom:562.860008px;}
.y1c3{bottom:563.220017px;}
.y188{bottom:563.940033px;}
.y22{bottom:566.639992px;}
.y165{bottom:567.000000px;}
.y6f{bottom:571.139992px;}
.yd1{bottom:571.500000px;}
.yb3{bottom:571.679970px;}
.y93{bottom:572.220017px;}
.y108{bottom:577.620002px;}
.y147{bottom:580.679970px;}
.y126{bottom:586.980011px;}
.y164{bottom:587.700027px;}
.y1a5{bottom:588.419975px;}
.y6e{bottom:592.019989px;}
.yd0{bottom:592.200027px;}
.yb2{bottom:592.559967px;}
.y92{bottom:592.919975px;}
.yeb{bottom:593.100013px;}
.y107{bottom:598.320030px;}
.y1c2{bottom:599.039977px;}
.y4c{bottom:599.940033px;}
.y146{bottom:601.379998px;}
.y187{bottom:602.639992px;}
.y4b{bottom:603.720017px;}
.y163{bottom:608.940033px;}
.y6d{bottom:612.720017px;}
.ycf{bottom:613.079990px;}
.yb1{bottom:613.259994px;}
.y20{bottom:618.839985px;}
.y1c1{bottom:619.740006px;}
.y145{bottom:622.259994px;}
.y1f{bottom:622.620002px;}
.y186{bottom:623.519989px;}
.y1a4{bottom:624.240006px;}
.y125{bottom:629.459988px;}
.y162{bottom:629.819995px;}
.y6c{bottom:633.420010px;}
.yce{bottom:633.779983px;}
.yb0{bottom:633.959988px;}
.y91{bottom:634.680004px;}
.yea{bottom:635.759994px;}
.y106{bottom:637.199993px;}
.y1e{bottom:637.920010px;}
.y1d{bottom:641.699993px;}
.y185{bottom:644.220017px;}
.y124{bottom:650.160015px;}
.y161{bottom:651.060001px;}
.y6b{bottom:654.300007px;}
.ycd{bottom:654.660015px;}
.y1c0{bottom:655.560001px;}
.ye9{bottom:656.459988px;}
.y105{bottom:657.899986px;}
.y1a3{bottom:660.060001px;}
.y184{bottom:664.920010px;}
.y144{bottom:667.079990px;}
.y123{bottom:670.860008px;}
.y160{bottom:671.939999px;}
.y4a{bottom:675.000000px;}
.ycc{bottom:675.360008px;}
.yaf{bottom:675.540012px;}
.y90{bottom:676.980011px;}
.ye8{bottom:677.160015px;}
.y59{bottom:678.779983px;}
.y1a2{bottom:680.759994px;}
.y1bf{bottom:691.379998px;}
.y122{bottom:691.740006px;}
.y15f{bottom:692.639992px;}
.y1b{bottom:694.079990px;}
.y6a{bottom:695.879998px;}
.ycb{bottom:696.240006px;}
.y1a{bottom:697.860008px;}
.y104{bottom:699.480011px;}
.y183{bottom:703.800007px;}
.y143{bottom:709.379998px;}
.y1be{bottom:712.079990px;}
.y121{bottom:712.439999px;}
.y18{bottom:713.160015px;}
.y69{bottom:716.579990px;}
.y17{bottom:716.939999px;}
.yae{bottom:718.019989px;}
.y8f{bottom:718.560001px;}
.y103{bottom:720.180004px;}
.y182{bottom:724.500000px;}
.y142{bottom:730.259994px;}
.y120{bottom:733.319995px;}
.y15e{bottom:736.379998px;}
.y68{bottom:737.459988px;}
.yad{bottom:738.899986px;}
.y8e{bottom:739.439999px;}
.y181{bottom:745.379998px;}
.y1bd{bottom:747.899986px;}
.y141{bottom:750.959988px;}
.y11f{bottom:754.019989px;}
.y49{bottom:757.259994px;}
.y67{bottom:758.160015px;}
.yca{bottom:758.699993px;}
.y102{bottom:759.060001px;}
.yac{bottom:759.600013px;}
.ye7{bottom:759.959988px;}
.y8d{bottom:760.139992px;}
.y180{bottom:766.079990px;}
.y1bc{bottom:768.600013px;}
.y140{bottom:772.019989px;}
.y1a1{bottom:773.100013px;}
.y66{bottom:778.860008px;}
.y15d{bottom:779.220017px;}
.yc9{bottom:779.399986px;}
.y101{bottom:779.759994px;}
.yab{bottom:780.480011px;}
.y8c{bottom:780.839985px;}
.y17f{bottom:786.959988px;}
.y1bb{bottom:789.480011px;}
.y16{bottom:791.459988px;}
.y13f{bottom:793.079990px;}
.y1a0{bottom:793.980011px;}
.y11e{bottom:795.600013px;}
.y58{bottom:799.740006px;}
.y15c{bottom:799.920010px;}
.y100{bottom:800.639992px;}
.yaa{bottom:801.180004px;}
.y8b{bottom:801.720017px;}
.ye6{bottom:802.620002px;}
.y1d4{bottom:804.420010px;}
.y17e{bottom:807.660015px;}
.yc8{bottom:820.980011px;}
.ya9{bottom:822.060001px;}
.ye5{bottom:823.319995px;}
.y1ba{bottom:825.300007px;}
.y17d{bottom:828.540012px;}
.y19f{bottom:829.620002px;}
.y11d{bottom:831.779983px;}
.y14{bottom:833.040012px;}
.y13e{bottom:837.720017px;}
.y65{bottom:841.139992px;}
.y48{bottom:841.319995px;}
.y15b{bottom:842.220017px;}
.ya8{bottom:842.759994px;}
.yff{bottom:843.300007px;}
.y8a{bottom:843.480011px;}
.ye4{bottom:844.019989px;}
.y1b9{bottom:846.000000px;}
.y17c{bottom:849.240006px;}
.y19e{bottom:850.500000px;}
.y1d3{bottom:860.939999px;}
.y15a{bottom:862.920010px;}
.ya7{bottom:863.459988px;}
.y89{bottom:864.180004px;}
.ye3{bottom:864.720017px;}
.y11c{bottom:868.319996px;}
.y12{bottom:874.439999px;}
.y13d{bottom:880.199993px;}
.y1b8{bottom:881.819996px;}
.y47{bottom:882.720017px;}
.y159{bottom:883.980011px;}
.y64{bottom:884.339985px;}
.y88{bottom:885.060001px;}
.ye2{bottom:885.420010px;}
.y17b{bottom:887.939999px;}
.y19d{bottom:889.019989px;}
.y11b{bottom:889.199993px;}
.y13c{bottom:900.900003px;}
.y1b7{bottom:902.520006px;}
.yfe{bottom:904.319996px;}
.y158{bottom:904.860008px;}
.ya6{bottom:905.039995px;}
.y63{bottom:905.219999px;}
.y87{bottom:905.759994px;}
.ye1{bottom:906.120002px;}
.y17a{bottom:908.819996px;}
.y11a{bottom:909.900003px;}
.y1d2{bottom:917.639992px;}
.y9{bottom:920.879998px;}
.y13b{bottom:921.599997px;}
.yc7{bottom:925.919992px;}
.y86{bottom:926.639992px;}
.ye0{bottom:926.819996px;}
.y19c{bottom:928.439999px;}
.y179{bottom:929.520006px;}
.y119{bottom:931.319996px;}
.y1b6{bottom:938.340002px;}
.y13a{bottom:942.479994px;}
.y8{bottom:945.900003px;}
.yc6{bottom:946.620002px;}
.yfd{bottom:946.800007px;}
.y85{bottom:947.340002px;}
.y62{bottom:947.520006px;}
.y19b{bottom:949.319996px;}
.y178{bottom:950.400003px;}
.y118{bottom:952.560001px;}
.y6{bottom:962.639992px;}
.y139{bottom:963.180004px;}
.y5{bottom:967.500000px;}
.yfc{bottom:967.680004px;}
.y84{bottom:968.219999px;}
.y61{bottom:968.400003px;}
.y19a{bottom:970.020006px;}
.y177{bottom:971.099997px;}
.y1b5{bottom:974.159998px;}
.y56{bottom:976.139992px;}
.yc5{bottom:988.199993px;}
.yfb{bottom:988.379998px;}
.y157{bottom:988.740006px;}
.y83{bottom:988.919992px;}
.y60{bottom:989.099997px;}
.y4{bottom:990.180004px;}
.y176{bottom:991.800007px;}
.y1b4{bottom:994.860008px;}
.y3{bottom:1004.039996px;}
.y138{bottom:1005.479994px;}
.yfa{bottom:1009.259994px;}
.y199{bottom:1009.439999px;}
.ydf{bottom:1009.620002px;}
.y5f{bottom:1009.979994px;}
.y45{bottom:1015.740006px;}
.y3e{bottom:1027.620002px;}
.y198{bottom:1030.139992px;}
.y5e{bottom:1030.680004px;}
.y55{bottom:1037.340002px;}
.yde{bottom:1050.840002px;}
.y5d{bottom:1051.379998px;}
.y44{bottom:1053.900003px;}
.y43{bottom:1058.040003px;}
.y5b{bottom:1072.620002px;}
.y42{bottom:1074.599997px;}
.y54{bottom:1078.739997px;}
.y40{bottom:1095.480002px;}
.y53{bottom:1099.620002px;}
.y5a{bottom:1101.420001px;}
.y1{bottom:1109.879998px;}
.h1a{height:18.720017px;}
.h19{height:19.079956px;}
.he{height:19.079990px;}
.hd{height:19.079991px;}
.h8{height:19.080025px;}
.h10{height:20.699958px;}
.h11{height:20.699960px;}
.h17{height:20.699993px;}
.h15{height:20.699998px;}
.h16{height:20.700001px;}
.h1b{height:20.700010px;}
.h13{height:20.700027px;}
.h12{height:20.700028px;}
.h1{height:24.120002px;}
.h5{height:24.300007px;}
.hb{height:41.579990px;}
.h14{height:41.580000px;}
.h9{height:41.580007px;}
.hc{height:41.580025px;}
.h4{height:42.550626px;}
.h1f{height:46.163898px;}
.h18{height:47.132372px;}
.h7{height:47.164654px;}
.h21{height:50.178232px;}
.h1d{height:51.160743px;}
.hf{height:51.230922px;}
.h3{height:51.266012px;}
.h20{height:52.318702px;}
.h6{height:52.943212px;}
.h2{height:59.981077px;}
.h1e{height:65.759343px;}
.h22{height:71.477664px;}
.h1c{height:102.321486px;}
.ha{height:102.532024px;}
.h0{height:1188.000000px;}
.w3a{width:3.600014px;}
.w40{width:3.960021px;}
.w15{width:8.099979px;}
.w3b{width:8.100014px;}
.w9{width:10.260011px;}
.w10{width:11.159980px;}
.wa{width:12.779983px;}
.w3{width:14.400003px;}
.w2{width:14.579990px;}
.w29{width:15.840020px;}
.w11{width:18.000000px;}
.w47{width:19.080025px;}
.w14{width:19.620002px;}
.w1f{width:20.160016px;}
.w23{width:20.340020px;}
.w38{width:21.420044px;}
.w1d{width:24.480011px;}
.w26{width:29.339951px;}
.w3f{width:33.120002px;}
.w27{width:33.300008px;}
.w4b{width:33.300042px;}
.w43{width:34.920044px;}
.we{width:38.339984px;}
.w5{width:39.779983px;}
.w2e{width:42.480011px;}
.w17{width:43.379998px;}
.w46{width:52.019989px;}
.w16{width:53.459954px;}
.wb{width:56.699992px;}
.w2a{width:57.240006px;}
.w35{width:57.420010px;}
.wd{width:60.839984px;}
.w25{width:61.199958px;}
.w18{width:64.980011px;}
.wc{width:71.819996px;}
.w3d{width:78.300042px;}
.w3e{width:85.139992px;}
.w1c{width:85.860008px;}
.w1a{width:86.939999px;}
.w12{width:93.419992px;}
.w41{width:93.420044px;}
.w4a{width:95.580025px;}
.w37{width:97.019989px;}
.w44{width:105.120002px;}
.w45{width:106.740006px;}
.w8{width:115.379997px;}
.w2b{width:120.600015px;}
.w20{width:122.580025px;}
.w2f{width:124.199993px;}
.w24{width:126.180005px;}
.w21{width:134.819996px;}
.w3c{width:134.820030px;}
.w7{width:135.179987px;}
.w39{width:139.139992px;}
.w28{width:139.140027px;}
.w42{width:145.080025px;}
.w48{width:145.440033px;}
.w1{width:155.340002px;}
.w49{width:155.519989px;}
.w34{width:157.499966px;}
.w32{width:160.199993px;}
.w33{width:167.580025px;}
.w22{width:171.719982px;}
.w31{width:182.879998px;}
.w6{width:187.019989px;}
.w13{width:203.939990px;}
.w30{width:209.879998px;}
.w2c{width:217.259994px;}
.wf{width:227.699992px;}
.w1b{width:246.780018px;}
.w4{width:262.079990px;}
.w36{width:280.439964px;}
.w2d{width:300.599980px;}
.w1e{width:307.979976px;}
.w19{width:343.079991px;}
.w0{width:918.000000px;}
.x53{left:-605.159981px;}
.x62{left:-570.779983px;}
.x68{left:-547.019981px;}
.x59{left:-458.459988px;}
.x54{left:-382.859974px;}
.x65{left:-354.239971px;}
.x57{left:-308.159981px;}
.x69{left:-280.619969px;}
.x21{left:-261.899985px;}
.x3d{left:-227.519989px;}
.x60{left:-217.439964px;}
.x63{left:-210.059967px;}
.x46{left:-203.759994px;}
.x24{left:-186.839984px;}
.x5b{left:-171.899986px;}
.x66{left:-160.379998px;}
.x67{left:-157.679970px;}
.x27{left:-134.999982px;}
.x2a{left:-115.199992px;}
.x43{left:-93.239988px;}
.x55{left:-86.039979px;}
.x32{left:-71.639991px;}
.x4f{left:-65.159981px;}
.x33{left:-60.659998px;}
.x2e{left:-56.519989px;}
.x4b{left:-53.639992px;}
.x4d{left:-43.559967px;}
.x22{left:-39.599979px;}
.x3a{left:-38.159980px;}
.x5d{left:-29.519989px;}
.x47{left:-19.439998px;}
.x41{left:-17.819996px;}
.x2c{left:-12.240004px;}
.x40{left:-10.979976px;}
.x0{left:0.000000px;}
.x7{left:81.000000px;}
.xd{left:89.099997px;}
.x5{left:99.000000px;}
.x1{left:101.340002px;}
.x6a{left:108.000000px;}
.x15{left:115.379998px;}
.x6b{left:135.000000px;}
.x4{left:138.239997px;}
.xa{left:156.060001px;}
.x8{left:166.500000px;}
.x12{left:172.080008px;}
.xb{left:207.900003px;}
.xc{left:227.699993px;}
.x3{left:231.840002px;}
.x18{left:249.659998px;}
.xe{left:252.539996px;}
.x2{left:256.680005px;}
.x6{left:259.199993px;}
.xf{left:271.259994px;}
.x13{left:282.240006px;}
.x11{left:286.379998px;}
.x9{left:303.300007px;}
.x14{left:304.740006px;}
.x19{left:323.459988px;}
.x17{left:325.079990px;}
.x10{left:330.300007px;}
.x16{left:331.920010px;}
.x20{left:343.079990px;}
.x3b{left:358.920010px;}
.x2d{left:363.240006px;}
.x28{left:367.560001px;}
.x37{left:376.379998px;}
.x29{left:378.180005px;}
.x39{left:389.519989px;}
.x2b{left:399.240006px;}
.x48{left:400.500000px;}
.x49{left:405.720017px;}
.x23{left:430.019989px;}
.x1a{left:464.220017px;}
.x2f{left:465.480011px;}
.x3e{left:467.279983px;}
.x34{left:469.259994px;}
.x3f{left:476.279983px;}
.x1f{left:480.420010px;}
.x38{left:482.220017px;}
.x1d{left:498.060001px;}
.x44{left:510.660015px;}
.x30{left:514.439999px;}
.x42{left:525.959988px;}
.x45{left:528.660015px;}
.x31{left:551.339985px;}
.x25{left:589.860008px;}
.x26{left:600.299973px;}
.x1e{left:621.179970px;}
.x35{left:624.960023px;}
.x3c{left:628.919975px;}
.x1b{left:632.700027px;}
.x1c{left:642.779983px;}
.x36{left:656.820030px;}
.x4a{left:686.159981px;}
.x5a{left:690.120002px;}
.x5f{left:705.240006px;}
.x4e{left:707.580025px;}
.x58{left:719.279983px;}
.x5c{left:721.080025px;}
.x52{left:734.940033px;}
.x5e{left:738.179970px;}
.x56{left:771.299973px;}
.x64{left:781.740006px;}
.x4c{left:783.179970px;}
.x50{left:825.299973px;}
.x51{left:829.799973px;}
.x61{left:831.600014px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls1{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.048907pt;}
.lsc{letter-spacing:0.121200pt;}
.ls9{letter-spacing:0.260732pt;}
.lsa{letter-spacing:0.293115pt;}
.ls7{letter-spacing:0.414797pt;}
.lsd{letter-spacing:0.414801pt;}
.lsb{letter-spacing:0.761092pt;}
.lse{letter-spacing:0.761216pt;}
.ls5{letter-spacing:1.054813pt;}
.ls3{letter-spacing:1.694709pt;}
.ls4{letter-spacing:6.814825pt;}
.ls6{letter-spacing:11.294805pt;}
.ls2{letter-spacing:27.745576pt;}
.ls8{letter-spacing:56.993674pt;}
.ws5{word-spacing:-53.019200pt;}
.ws3{word-spacing:-16.274122pt;}
.ws1{word-spacing:-16.225215pt;}
.ws0{word-spacing:-14.927174pt;}
.ws2{word-spacing:-14.883760pt;}
.ws4{word-spacing:0.000000pt;}
._28{margin-left:-1.890030pt;}
._1{margin-left:-0.891627pt;}
._0{width:1.294000pt;}
._7{width:2.363017pt;}
._6{width:3.672372pt;}
._17{width:5.279279pt;}
._3{width:6.850752pt;}
._2{width:7.826650pt;}
._15{width:8.754320pt;}
._1a{width:9.769758pt;}
._b{width:10.781294pt;}
._1e{width:11.809640pt;}
._1b{width:12.706210pt;}
._9{width:13.618794pt;}
._a{width:14.558418pt;}
._29{width:17.005529pt;}
._e{width:17.919002pt;}
._1c{width:19.054347pt;}
._1d{width:20.375974pt;}
._27{width:21.956706pt;}
._24{width:23.107203pt;}
._21{width:24.195343pt;}
._c{width:25.105661pt;}
._d{width:26.128675pt;}
._26{width:27.037700pt;}
._1f{width:28.109167pt;}
._20{width:29.345137pt;}
._5{width:30.989066pt;}
._4{width:31.909207pt;}
._18{width:33.073249pt;}
._19{width:34.391835pt;}
._2d{width:35.668726pt;}
._32{width:38.138638pt;}
._22{width:40.051758pt;}
._8{width:43.135906pt;}
._2c{width:44.069588pt;}
._25{width:45.433962pt;}
._16{width:46.598836pt;}
._23{width:60.588293pt;}
._2f{width:65.780736pt;}
._2e{width:66.736628pt;}
._30{width:67.646152pt;}
._f{width:84.727200pt;}
._2b{width:93.304020pt;}
._2a{width:94.285716pt;}
._12{width:102.688165pt;}
._10{width:104.967680pt;}
._11{width:176.752640pt;}
._13{width:178.030216pt;}
._31{width:179.313371pt;}
._14{width:613.818261pt;}
.fs2{font-size:53.019200pt;}
.fs3{font-size:58.768400pt;}
.fs1{font-size:63.878800pt;}
.fs0{font-size:74.738000pt;}
.fs4{font-size:127.757600pt;}
.y0{bottom:0.000000pt;}
.y50{bottom:3.200012pt;}
.yf{bottom:3.359985pt;}
.y19{bottom:3.359986pt;}
.y21{bottom:3.360015pt;}
.y1c{bottom:3.360016pt;}
.yc{bottom:3.360046pt;}
.y11{bottom:3.360047pt;}
.y3d{bottom:3.679992pt;}
.y2b{bottom:3.679993pt;}
.y41{bottom:3.680000pt;}
.y57{bottom:3.680008pt;}
.y32{bottom:3.680053pt;}
.y2{bottom:4.319999pt;}
.y7{bottom:4.320007pt;}
.y15{bottom:7.359985pt;}
.y3f{bottom:7.360001pt;}
.y13{bottom:7.360016pt;}
.y10{bottom:48.159973pt;}
.y46{bottom:51.520020pt;}
.ye{bottom:65.119995pt;}
.yd{bottom:68.479980pt;}
.y5c{bottom:72.159973pt;}
.yb{bottom:81.919983pt;}
.ya{bottom:98.880005pt;}
.yc4{bottom:99.840027pt;}
.ya5{bottom:100.640015pt;}
.y156{bottom:102.400024pt;}
.y137{bottom:105.280029pt;}
.y1d1{bottom:111.840027pt;}
.yf9{bottom:115.200012pt;}
.yc3{bottom:118.719971pt;}
.ya4{bottom:119.039978pt;}
.y82{bottom:119.520020pt;}
.y117{bottom:123.359985pt;}
.y136{bottom:123.679993pt;}
.y1d0{bottom:130.239990pt;}
.y175{bottom:133.599976pt;}
.y1b3{bottom:134.239990pt;}
.ydd{bottom:136.640015pt;}
.yc2{bottom:137.119995pt;}
.y81{bottom:137.919983pt;}
.y155{bottom:140.000000pt;}
.y116{bottom:141.760010pt;}
.y135{bottom:142.080017pt;}
.y3c{bottom:151.520020pt;}
.y174{bottom:152.159973pt;}
.yf8{bottom:152.799988pt;}
.y3b{bottom:155.200012pt;}
.yc1{bottom:155.679993pt;}
.ya3{bottom:156.000000pt;}
.y80{bottom:156.320007pt;}
.y197{bottom:158.400024pt;}
.y134{bottom:160.640015pt;}
.y1cf{bottom:162.080017pt;}
.y3a{bottom:169.919983pt;}
.y173{bottom:170.559998pt;}
.y39{bottom:173.599976pt;}
.yc0{bottom:174.080017pt;}
.y7f{bottom:174.880005pt;}
.y196{bottom:176.799988pt;}
.y154{bottom:177.119995pt;}
.y115{bottom:180.320007pt;}
.y1ce{bottom:180.640015pt;}
.y1b2{bottom:184.479980pt;}
.y38{bottom:188.479980pt;}
.y172{bottom:188.960022pt;}
.yf7{bottom:190.400024pt;}
.ydc{bottom:192.000000pt;}
.y37{bottom:192.159973pt;}
.ybf{bottom:192.640015pt;}
.y7e{bottom:193.280029pt;}
.ya2{bottom:193.760010pt;}
.y195{bottom:195.359985pt;}
.y153{bottom:195.840027pt;}
.y133{bottom:200.479980pt;}
.y1b1{bottom:203.039978pt;}
.y36{bottom:206.880005pt;}
.y171{bottom:207.520020pt;}
.yf6{bottom:208.799988pt;}
.ydb{bottom:210.559998pt;}
.ybe{bottom:211.039978pt;}
.y7d{bottom:211.840027pt;}
.ya1{bottom:212.320007pt;}
.y152{bottom:214.400024pt;}
.y114{bottom:215.359985pt;}
.y1b0{bottom:221.440002pt;}
.y35{bottom:225.440002pt;}
.y170{bottom:225.919983pt;}
.yf5{bottom:227.359985pt;}
.yda{bottom:228.960022pt;}
.y194{bottom:230.080017pt;}
.y7c{bottom:230.239990pt;}
.ya0{bottom:230.719971pt;}
.y1cd{bottom:230.880005pt;}
.y113{bottom:236.799988pt;}
.y132{bottom:238.239990pt;}
.y34{bottom:243.840027pt;}
.yf4{bottom:245.760010pt;}
.yd9{bottom:247.359985pt;}
.y33{bottom:247.520020pt;}
.ybd{bottom:248.000000pt;}
.y9f{bottom:249.280029pt;}
.y151{bottom:251.520020pt;}
.y1af{bottom:253.280029pt;}
.y131{bottom:256.640015pt;}
.y112{bottom:257.919983pt;}
.y16f{bottom:260.159973pt;}
.y31{bottom:262.719971pt;}
.y193{bottom:265.119995pt;}
.y30{bottom:266.400024pt;}
.y7b{bottom:267.359985pt;}
.y9e{bottom:267.679993pt;}
.y1ae{bottom:271.679993pt;}
.y130{bottom:275.039978pt;}
.y1cc{bottom:281.119995pt;}
.y2f{bottom:281.440002pt;}
.yf3{bottom:282.880005pt;}
.y52{bottom:285.119995pt;}
.ybc{bottom:285.760010pt;}
.y7a{bottom:285.919983pt;}
.y9d{bottom:286.239990pt;}
.y150{bottom:289.919983pt;}
.y111{bottom:292.479980pt;}
.y12f{bottom:293.599976pt;}
.y16e{bottom:297.919983pt;}
.y1cb{bottom:299.520020pt;}
.y2e{bottom:299.840027pt;}
.y192{bottom:300.000000pt;}
.y1ad{bottom:303.520020pt;}
.ybb{bottom:304.159973pt;}
.y79{bottom:304.320007pt;}
.y9c{bottom:304.640015pt;}
.y12e{bottom:312.000000pt;}
.y16d{bottom:316.479980pt;}
.y2d{bottom:318.400024pt;}
.yf2{bottom:320.799988pt;}
.y2c{bottom:322.080017pt;}
.yd8{bottom:322.239990pt;}
.yba{bottom:322.719971pt;}
.y78{bottom:322.880005pt;}
.y9b{bottom:323.200012pt;}
.y110{bottom:327.520020pt;}
.y14f{bottom:327.679993pt;}
.y1ca{bottom:331.359985pt;}
.y16c{bottom:334.880005pt;}
.y191{bottom:335.039978pt;}
.y2a{bottom:336.960022pt;}
.yf1{bottom:339.359985pt;}
.y51{bottom:340.640015pt;}
.yb9{bottom:341.119995pt;}
.y77{bottom:341.280029pt;}
.y14e{bottom:346.080017pt;}
.y10f{bottom:348.799988pt;}
.y12d{bottom:352.000000pt;}
.y16b{bottom:353.280029pt;}
.y190{bottom:353.440002pt;}
.y1ac{bottom:353.760010pt;}
.yf0{bottom:358.080017pt;}
.y76{bottom:359.679993pt;}
.y9a{bottom:360.000000pt;}
.y1c9{bottom:363.200012pt;}
.y14d{bottom:364.640015pt;}
.y10e{bottom:370.080017pt;}
.y18f{bottom:372.000000pt;}
.y1ab{bottom:372.320007pt;}
.yef{bottom:376.960022pt;}
.y29{bottom:377.440002pt;}
.yb8{bottom:378.080017pt;}
.y75{bottom:378.239990pt;}
.yd7{bottom:378.559998pt;}
.y1c8{bottom:381.599976pt;}
.y14c{bottom:383.200012pt;}
.y12c{bottom:389.599976pt;}
.y18e{bottom:390.400024pt;}
.y10d{bottom:391.359985pt;}
.y16a{bottom:391.840027pt;}
.yb7{bottom:396.479980pt;}
.y74{bottom:396.640015pt;}
.yd6{bottom:396.960022pt;}
.y99{bottom:397.760010pt;}
.y14b{bottom:401.599976pt;}
.y1aa{bottom:404.159973pt;}
.y12b{bottom:408.000000pt;}
.y18d{bottom:408.960022pt;}
.y28{bottom:412.000000pt;}
.y4f{bottom:412.159973pt;}
.y1c7{bottom:413.440002pt;}
.yee{bottom:414.080017pt;}
.y73{bottom:415.200012pt;}
.y27{bottom:415.359985pt;}
.yd5{bottom:415.520020pt;}
.y98{bottom:416.320007pt;}
.y1a9{bottom:422.559998pt;}
.y10c{bottom:422.880005pt;}
.y12a{bottom:426.559998pt;}
.y18c{bottom:427.359985pt;}
.y169{bottom:429.599976pt;}
.y1c6{bottom:432.000000pt;}
.y4e{bottom:432.799988pt;}
.yb6{bottom:433.440002pt;}
.y72{bottom:433.599976pt;}
.yd4{bottom:433.919983pt;}
.y97{bottom:434.719971pt;}
.y1a8{bottom:440.960022pt;}
.y14a{bottom:441.599976pt;}
.y129{bottom:444.960022pt;}
.y18b{bottom:445.919983pt;}
.y168{bottom:448.000000pt;}
.y1c5{bottom:450.400024pt;}
.yed{bottom:451.039978pt;}
.yd3{bottom:452.320007pt;}
.y26{bottom:452.799988pt;}
.y96{bottom:453.280029pt;}
.y10b{bottom:458.080017pt;}
.y128{bottom:463.520020pt;}
.y18a{bottom:464.320007pt;}
.y167{bottom:466.559998pt;}
.y4d{bottom:469.760010pt;}
.y71{bottom:470.719971pt;}
.yb5{bottom:471.200012pt;}
.y95{bottom:471.679993pt;}
.y1a7{bottom:472.799988pt;}
.y10a{bottom:476.479980pt;}
.y149{bottom:479.200012pt;}
.y127{bottom:481.919983pt;}
.y1c4{bottom:482.239990pt;}
.y189{bottom:482.719971pt;}
.y25{bottom:483.359985pt;}
.y166{bottom:485.440002pt;}
.y24{bottom:486.719971pt;}
.yec{bottom:488.799988pt;}
.y70{bottom:489.280029pt;}
.yd2{bottom:489.599976pt;}
.yb4{bottom:489.760010pt;}
.y94{bottom:490.239990pt;}
.y1a6{bottom:491.359985pt;}
.y109{bottom:495.039978pt;}
.y148{bottom:497.760010pt;}
.y23{bottom:500.320007pt;}
.y1c3{bottom:500.640015pt;}
.y188{bottom:501.280029pt;}
.y22{bottom:503.679993pt;}
.y165{bottom:504.000000pt;}
.y6f{bottom:507.679993pt;}
.yd1{bottom:508.000000pt;}
.yb3{bottom:508.159973pt;}
.y93{bottom:508.640015pt;}
.y108{bottom:513.440002pt;}
.y147{bottom:516.159973pt;}
.y126{bottom:521.760010pt;}
.y164{bottom:522.400024pt;}
.y1a5{bottom:523.039978pt;}
.y6e{bottom:526.239990pt;}
.yd0{bottom:526.400024pt;}
.yb2{bottom:526.719971pt;}
.y92{bottom:527.039978pt;}
.yeb{bottom:527.200012pt;}
.y107{bottom:531.840027pt;}
.y1c2{bottom:532.479980pt;}
.y4c{bottom:533.280029pt;}
.y146{bottom:534.559998pt;}
.y187{bottom:535.679993pt;}
.y4b{bottom:536.640015pt;}
.y163{bottom:541.280029pt;}
.y6d{bottom:544.640015pt;}
.ycf{bottom:544.959991pt;}
.yb1{bottom:545.119995pt;}
.y20{bottom:550.079987pt;}
.y1c1{bottom:550.880005pt;}
.y145{bottom:553.119995pt;}
.y1f{bottom:553.440002pt;}
.y186{bottom:554.239990pt;}
.y1a4{bottom:554.880005pt;}
.y125{bottom:559.519989pt;}
.y162{bottom:559.839996pt;}
.y6c{bottom:563.040009pt;}
.yce{bottom:563.359985pt;}
.yb0{bottom:563.519989pt;}
.y91{bottom:564.160004pt;}
.yea{bottom:565.119995pt;}
.y106{bottom:566.399994pt;}
.y1e{bottom:567.040009pt;}
.y1d{bottom:570.399994pt;}
.y185{bottom:572.640015pt;}
.y124{bottom:577.920013pt;}
.y161{bottom:578.720001pt;}
.y6b{bottom:581.600006pt;}
.ycd{bottom:581.920013pt;}
.y1c0{bottom:582.720001pt;}
.ye9{bottom:583.519989pt;}
.y105{bottom:584.799988pt;}
.y1a3{bottom:586.720001pt;}
.y184{bottom:591.040009pt;}
.y144{bottom:592.959991pt;}
.y123{bottom:596.320007pt;}
.y160{bottom:597.279999pt;}
.y4a{bottom:600.000000pt;}
.ycc{bottom:600.320007pt;}
.yaf{bottom:600.480011pt;}
.y90{bottom:601.760010pt;}
.ye8{bottom:601.920013pt;}
.y59{bottom:603.359985pt;}
.y1a2{bottom:605.119995pt;}
.y1bf{bottom:614.559998pt;}
.y122{bottom:614.880005pt;}
.y15f{bottom:615.679993pt;}
.y1b{bottom:616.959991pt;}
.y6a{bottom:618.559998pt;}
.ycb{bottom:618.880005pt;}
.y1a{bottom:620.320007pt;}
.y104{bottom:621.760010pt;}
.y183{bottom:625.600006pt;}
.y143{bottom:630.559998pt;}
.y1be{bottom:632.959991pt;}
.y121{bottom:633.279999pt;}
.y18{bottom:633.920013pt;}
.y69{bottom:636.959991pt;}
.y17{bottom:637.279999pt;}
.yae{bottom:638.239990pt;}
.y8f{bottom:638.720001pt;}
.y103{bottom:640.160004pt;}
.y182{bottom:644.000000pt;}
.y142{bottom:649.119995pt;}
.y120{bottom:651.839996pt;}
.y15e{bottom:654.559998pt;}
.y68{bottom:655.519989pt;}
.yad{bottom:656.799988pt;}
.y8e{bottom:657.279999pt;}
.y181{bottom:662.559998pt;}
.y1bd{bottom:664.799988pt;}
.y141{bottom:667.519989pt;}
.y11f{bottom:670.239990pt;}
.y49{bottom:673.119995pt;}
.y67{bottom:673.920013pt;}
.yca{bottom:674.399994pt;}
.y102{bottom:674.720001pt;}
.yac{bottom:675.200012pt;}
.ye7{bottom:675.519989pt;}
.y8d{bottom:675.679993pt;}
.y180{bottom:680.959991pt;}
.y1bc{bottom:683.200012pt;}
.y140{bottom:686.239990pt;}
.y1a1{bottom:687.200012pt;}
.y66{bottom:692.320007pt;}
.y15d{bottom:692.640015pt;}
.yc9{bottom:692.799988pt;}
.y101{bottom:693.119995pt;}
.yab{bottom:693.760010pt;}
.y8c{bottom:694.079987pt;}
.y17f{bottom:699.519989pt;}
.y1bb{bottom:701.760010pt;}
.y16{bottom:703.519989pt;}
.y13f{bottom:704.959991pt;}
.y1a0{bottom:705.760010pt;}
.y11e{bottom:707.200012pt;}
.y58{bottom:710.880005pt;}
.y15c{bottom:711.040009pt;}
.y100{bottom:711.679993pt;}
.yaa{bottom:712.160004pt;}
.y8b{bottom:712.640015pt;}
.ye6{bottom:713.440002pt;}
.y1d4{bottom:715.040009pt;}
.y17e{bottom:717.920013pt;}
.yc8{bottom:729.760010pt;}
.ya9{bottom:730.720001pt;}
.ye5{bottom:731.839996pt;}
.y1ba{bottom:733.600006pt;}
.y17d{bottom:736.480011pt;}
.y19f{bottom:737.440002pt;}
.y11d{bottom:739.359985pt;}
.y14{bottom:740.480011pt;}
.y13e{bottom:744.640015pt;}
.y65{bottom:747.679993pt;}
.y48{bottom:747.839996pt;}
.y15b{bottom:748.640015pt;}
.ya8{bottom:749.119995pt;}
.yff{bottom:749.600006pt;}
.y8a{bottom:749.760010pt;}
.ye4{bottom:750.239990pt;}
.y1b9{bottom:752.000000pt;}
.y17c{bottom:754.880005pt;}
.y19e{bottom:756.000000pt;}
.y1d3{bottom:765.279999pt;}
.y15a{bottom:767.040009pt;}
.ya7{bottom:767.519989pt;}
.y89{bottom:768.160004pt;}
.ye3{bottom:768.640015pt;}
.y11c{bottom:771.839996pt;}
.y12{bottom:777.279999pt;}
.y13d{bottom:782.399994pt;}
.y1b8{bottom:783.839996pt;}
.y47{bottom:784.640015pt;}
.y159{bottom:785.760010pt;}
.y64{bottom:786.079987pt;}
.y88{bottom:786.720001pt;}
.ye2{bottom:787.040009pt;}
.y17b{bottom:789.279999pt;}
.y19d{bottom:790.239990pt;}
.y11b{bottom:790.399994pt;}
.y13c{bottom:800.800003pt;}
.y1b7{bottom:802.240005pt;}
.yfe{bottom:803.839996pt;}
.y158{bottom:804.320007pt;}
.ya6{bottom:804.479996pt;}
.y63{bottom:804.639999pt;}
.y87{bottom:805.119995pt;}
.ye1{bottom:805.440002pt;}
.y17a{bottom:807.839996pt;}
.y11a{bottom:808.800003pt;}
.y1d2{bottom:815.679993pt;}
.y9{bottom:818.559998pt;}
.y13b{bottom:819.199997pt;}
.yc7{bottom:823.039993pt;}
.y86{bottom:823.679993pt;}
.ye0{bottom:823.839996pt;}
.y19c{bottom:825.279999pt;}
.y179{bottom:826.240005pt;}
.y119{bottom:827.839996pt;}
.y1b6{bottom:834.080002pt;}
.y13a{bottom:837.759995pt;}
.y8{bottom:840.800003pt;}
.yc6{bottom:841.440002pt;}
.yfd{bottom:841.600006pt;}
.y85{bottom:842.080002pt;}
.y62{bottom:842.240005pt;}
.y19b{bottom:843.839996pt;}
.y178{bottom:844.800003pt;}
.y118{bottom:846.720001pt;}
.y6{bottom:855.679993pt;}
.y139{bottom:856.160004pt;}
.y5{bottom:860.000000pt;}
.yfc{bottom:860.160004pt;}
.y84{bottom:860.639999pt;}
.y61{bottom:860.800003pt;}
.y19a{bottom:862.240005pt;}
.y177{bottom:863.199997pt;}
.y1b5{bottom:865.919998pt;}
.y56{bottom:867.679993pt;}
.yc5{bottom:878.399994pt;}
.yfb{bottom:878.559998pt;}
.y157{bottom:878.880005pt;}
.y83{bottom:879.039993pt;}
.y60{bottom:879.199997pt;}
.y4{bottom:880.160004pt;}
.y176{bottom:881.600006pt;}
.y1b4{bottom:884.320007pt;}
.y3{bottom:892.479996pt;}
.y138{bottom:893.759995pt;}
.yfa{bottom:897.119995pt;}
.y199{bottom:897.279999pt;}
.ydf{bottom:897.440002pt;}
.y5f{bottom:897.759995pt;}
.y45{bottom:902.880005pt;}
.y3e{bottom:913.440002pt;}
.y198{bottom:915.679993pt;}
.y5e{bottom:916.160004pt;}
.y55{bottom:922.080002pt;}
.yde{bottom:934.080002pt;}
.y5d{bottom:934.559998pt;}
.y44{bottom:936.800003pt;}
.y43{bottom:940.480003pt;}
.y5b{bottom:953.440002pt;}
.y42{bottom:955.199997pt;}
.y54{bottom:958.879997pt;}
.y40{bottom:973.760002pt;}
.y53{bottom:977.440002pt;}
.y5a{bottom:979.040001pt;}
.y1{bottom:986.559998pt;}
.h1a{height:16.640015pt;}
.h19{height:16.959961pt;}
.he{height:16.959991pt;}
.hd{height:16.959992pt;}
.h8{height:16.960022pt;}
.h10{height:18.399963pt;}
.h11{height:18.399964pt;}
.h17{height:18.399994pt;}
.h15{height:18.399998pt;}
.h16{height:18.400001pt;}
.h1b{height:18.400009pt;}
.h13{height:18.400024pt;}
.h12{height:18.400025pt;}
.h1{height:21.440002pt;}
.h5{height:21.600006pt;}
.hb{height:36.959991pt;}
.h14{height:36.960000pt;}
.h9{height:36.960006pt;}
.hc{height:36.960022pt;}
.h4{height:37.822779pt;}
.h1f{height:41.034576pt;}
.h18{height:41.895441pt;}
.h7{height:41.924137pt;}
.h21{height:44.602873pt;}
.h1d{height:45.476216pt;}
.hf{height:45.538598pt;}
.h3{height:45.569788pt;}
.h20{height:46.505513pt;}
.h6{height:47.060633pt;}
.h2{height:53.316513pt;}
.h1e{height:58.452749pt;}
.h22{height:63.535701pt;}
.h1c{height:90.952432pt;}
.ha{height:91.139577pt;}
.h0{height:1056.000000pt;}
.w3a{width:3.200012pt;}
.w40{width:3.520019pt;}
.w15{width:7.199981pt;}
.w3b{width:7.200012pt;}
.w9{width:9.120010pt;}
.w10{width:9.919982pt;}
.wa{width:11.359985pt;}
.w3{width:12.800003pt;}
.w2{width:12.959991pt;}
.w29{width:14.080018pt;}
.w11{width:16.000000pt;}
.w47{width:16.960022pt;}
.w14{width:17.440002pt;}
.w1f{width:17.920014pt;}
.w23{width:18.080018pt;}
.w38{width:19.040039pt;}
.w1d{width:21.760010pt;}
.w26{width:26.079956pt;}
.w3f{width:29.440002pt;}
.w27{width:29.600007pt;}
.w4b{width:29.600037pt;}
.w43{width:31.040039pt;}
.we{width:34.079986pt;}
.w5{width:35.359985pt;}
.w2e{width:37.760010pt;}
.w17{width:38.559998pt;}
.w46{width:46.239990pt;}
.w16{width:47.519959pt;}
.wb{width:50.399993pt;}
.w2a{width:50.880005pt;}
.w35{width:51.040009pt;}
.wd{width:54.079986pt;}
.w25{width:54.399963pt;}
.w18{width:57.760010pt;}
.wc{width:63.839996pt;}
.w3d{width:69.600037pt;}
.w3e{width:75.679993pt;}
.w1c{width:76.320007pt;}
.w1a{width:77.279999pt;}
.w12{width:83.039993pt;}
.w41{width:83.040039pt;}
.w4a{width:84.960022pt;}
.w37{width:86.239990pt;}
.w44{width:93.440002pt;}
.w45{width:94.880005pt;}
.w8{width:102.559997pt;}
.w2b{width:107.200013pt;}
.w20{width:108.960022pt;}
.w2f{width:110.399994pt;}
.w24{width:112.160004pt;}
.w21{width:119.839996pt;}
.w3c{width:119.840027pt;}
.w7{width:120.159988pt;}
.w39{width:123.679993pt;}
.w28{width:123.680024pt;}
.w42{width:128.960022pt;}
.w48{width:129.280029pt;}
.w1{width:138.080002pt;}
.w49{width:138.239990pt;}
.w34{width:139.999970pt;}
.w32{width:142.399994pt;}
.w33{width:148.960022pt;}
.w22{width:152.639984pt;}
.w31{width:162.559998pt;}
.w6{width:166.239990pt;}
.w13{width:181.279991pt;}
.w30{width:186.559998pt;}
.w2c{width:193.119995pt;}
.wf{width:202.399993pt;}
.w1b{width:219.360016pt;}
.w4{width:232.959991pt;}
.w36{width:249.279968pt;}
.w2d{width:267.199982pt;}
.w1e{width:273.759979pt;}
.w19{width:304.959992pt;}
.w0{width:816.000000pt;}
.x53{left:-537.919983pt;}
.x62{left:-507.359985pt;}
.x68{left:-486.239983pt;}
.x59{left:-407.519989pt;}
.x54{left:-340.319977pt;}
.x65{left:-314.879974pt;}
.x57{left:-273.919983pt;}
.x69{left:-249.439972pt;}
.x21{left:-232.799987pt;}
.x3d{left:-202.239990pt;}
.x60{left:-193.279968pt;}
.x63{left:-186.719971pt;}
.x46{left:-181.119995pt;}
.x24{left:-166.079986pt;}
.x5b{left:-152.799988pt;}
.x66{left:-142.559998pt;}
.x67{left:-140.159973pt;}
.x27{left:-119.999984pt;}
.x2a{left:-102.399993pt;}
.x43{left:-82.879989pt;}
.x55{left:-76.479981pt;}
.x32{left:-63.679992pt;}
.x4f{left:-57.919983pt;}
.x33{left:-53.919998pt;}
.x2e{left:-50.239990pt;}
.x4b{left:-47.679993pt;}
.x4d{left:-38.719971pt;}
.x22{left:-35.199981pt;}
.x3a{left:-33.919982pt;}
.x5d{left:-26.239990pt;}
.x47{left:-17.279998pt;}
.x41{left:-15.839996pt;}
.x2c{left:-10.880004pt;}
.x40{left:-9.759979pt;}
.x0{left:0.000000pt;}
.x7{left:72.000000pt;}
.xd{left:79.199997pt;}
.x5{left:88.000000pt;}
.x1{left:90.080002pt;}
.x6a{left:96.000000pt;}
.x15{left:102.559998pt;}
.x6b{left:120.000000pt;}
.x4{left:122.879997pt;}
.xa{left:138.720001pt;}
.x8{left:148.000000pt;}
.x12{left:152.960007pt;}
.xb{left:184.800003pt;}
.xc{left:202.399994pt;}
.x3{left:206.080002pt;}
.x18{left:221.919998pt;}
.xe{left:224.479996pt;}
.x2{left:228.160004pt;}
.x6{left:230.399994pt;}
.xf{left:241.119995pt;}
.x13{left:250.880005pt;}
.x11{left:254.559998pt;}
.x9{left:269.600006pt;}
.x14{left:270.880005pt;}
.x19{left:287.519989pt;}
.x17{left:288.959991pt;}
.x10{left:293.600006pt;}
.x16{left:295.040009pt;}
.x20{left:304.959991pt;}
.x3b{left:319.040009pt;}
.x2d{left:322.880005pt;}
.x28{left:326.720001pt;}
.x37{left:334.559998pt;}
.x29{left:336.160004pt;}
.x39{left:346.239990pt;}
.x2b{left:354.880005pt;}
.x48{left:356.000000pt;}
.x49{left:360.640015pt;}
.x23{left:382.239990pt;}
.x1a{left:412.640015pt;}
.x2f{left:413.760010pt;}
.x3e{left:415.359985pt;}
.x34{left:417.119995pt;}
.x3f{left:423.359985pt;}
.x1f{left:427.040009pt;}
.x38{left:428.640015pt;}
.x1d{left:442.720001pt;}
.x44{left:453.920013pt;}
.x30{left:457.279999pt;}
.x42{left:467.519989pt;}
.x45{left:469.920013pt;}
.x31{left:490.079987pt;}
.x25{left:524.320007pt;}
.x26{left:533.599976pt;}
.x1e{left:552.159973pt;}
.x35{left:555.520020pt;}
.x3c{left:559.039978pt;}
.x1b{left:562.400024pt;}
.x1c{left:571.359985pt;}
.x36{left:583.840027pt;}
.x4a{left:609.919983pt;}
.x5a{left:613.440002pt;}
.x5f{left:626.880005pt;}
.x4e{left:628.960022pt;}
.x58{left:639.359985pt;}
.x5c{left:640.960022pt;}
.x52{left:653.280029pt;}
.x5e{left:656.159973pt;}
.x56{left:685.599976pt;}
.x64{left:694.880005pt;}
.x4c{left:696.159973pt;}
.x50{left:733.599976pt;}
.x51{left:737.599976pt;}
.x61{left:739.200012pt;}
}




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