
    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_922d2e0ada3ff5f756aa2f59.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.856934;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_a9cc22714a950dba7f3d93ba.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.002930;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_46bf1c107d5aa32c836792bc.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_46213bbb324a7785677977b1.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.910645;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_5cb056c908b8d8fe80c52550.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.709473;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_bb6a220d8866313f1e554a8c.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_6514d848631fe0e31446f833.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.938965;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);}
.m3{transform:matrix(0.320474,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320474,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320474,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.402438,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402438,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402438,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.453917,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.453917,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.453917,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.474431,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.474431,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.474431,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2{vertical-align:-5.100000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:9.498240px;}
.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;}
}
.ws8{word-spacing:-81.029305px;}
.ws2{word-spacing:-72.000000px;}
.wsa{word-spacing:-66.000000px;}
.ws7{word-spacing:-57.000000px;}
.ws39{word-spacing:-54.119549px;}
.ws2a{word-spacing:-54.119546px;}
.ws1c{word-spacing:-54.119544px;}
.ws35{word-spacing:-54.119542px;}
.ws2b{word-spacing:-54.119539px;}
.ws43{word-spacing:-54.119537px;}
.ws4b{word-spacing:-54.119534px;}
.ws1f{word-spacing:-54.119530px;}
.ws2f{word-spacing:-54.105466px;}
.ws26{word-spacing:-54.096105px;}
.ws45{word-spacing:-54.096098px;}
.ws28{word-spacing:-54.096096px;}
.ws4d{word-spacing:-54.096093px;}
.ws36{word-spacing:-54.096091px;}
.ws2e{word-spacing:-54.023436px;}
.ws44{word-spacing:-54.000019px;}
.ws52{word-spacing:-54.000017px;}
.ws20{word-spacing:-54.000014px;}
.ws31{word-spacing:-54.000012px;}
.ws22{word-spacing:-54.000010px;}
.ws29{word-spacing:-54.000007px;}
.ws25{word-spacing:-54.000005px;}
.ws27{word-spacing:-54.000002px;}
.ws4{word-spacing:-54.000000px;}
.ws21{word-spacing:-53.999995px;}
.ws30{word-spacing:-53.999993px;}
.ws4a{word-spacing:-53.999990px;}
.ws46{word-spacing:-53.999985px;}
.ws37{word-spacing:-53.976573px;}
.ws4c{word-spacing:-53.976571px;}
.ws2d{word-spacing:-53.976564px;}
.ws1d{word-spacing:-53.976562px;}
.ws4e{word-spacing:-53.976550px;}
.ws50{word-spacing:-53.903914px;}
.ws51{word-spacing:-53.903911px;}
.ws34{word-spacing:-53.903909px;}
.ws32{word-spacing:-53.903904px;}
.ws4f{word-spacing:-53.903899px;}
.ws49{word-spacing:-53.903894px;}
.ws47{word-spacing:-53.903887px;}
.ws23{word-spacing:-53.857054px;}
.ws38{word-spacing:-53.857044px;}
.ws2c{word-spacing:-53.857041px;}
.ws48{word-spacing:-53.857037px;}
.ws33{word-spacing:-53.857034px;}
.ws1e{word-spacing:-53.857030px;}
.ws3{word-spacing:-53.842968px;}
.wsb{word-spacing:-49.606049px;}
.ws13{word-spacing:-49.578519px;}
.wsf{word-spacing:-49.578515px;}
.ws12{word-spacing:-49.536913px;}
.wse{word-spacing:-49.536909px;}
.ws9{word-spacing:-49.500004px;}
.ws11{word-spacing:-49.500000px;}
.wsc{word-spacing:-49.499997px;}
.wsd{word-spacing:-49.393946px;}
.ws10{word-spacing:-49.393943px;}
.ws5{word-spacing:-42.699324px;}
.ws6{word-spacing:-42.699322px;}
.ws18{word-spacing:-40.514657px;}
.ws1b{word-spacing:-40.514654px;}
.ws24{word-spacing:-40.500002px;}
.ws1{word-spacing:-37.228123px;}
.ws0{word-spacing:-37.106251px;}
.ws14{word-spacing:-36.079690px;}
.ws15{word-spacing:-36.004690px;}
.ws16{word-spacing:-36.000000px;}
.ws19{word-spacing:-26.967780px;}
.ws1a{word-spacing:-26.967777px;}
.ws3e{word-spacing:-14.316277px;}
.ws40{word-spacing:-11.683735px;}
.ws42{word-spacing:-10.174711px;}
.ws3b{word-spacing:-9.624278px;}
.ws3d{word-spacing:-3.316576px;}
.ws17{word-spacing:0.000000px;}
.ws3a{word-spacing:46.118414px;}
.ws3f{word-spacing:66.722371px;}
.ws41{word-spacing:70.125384px;}
.ws3c{word-spacing:621.460331px;}
._11{margin-left:-11.331726px;}
._13{margin-left:-9.263931px;}
._16{margin-left:-8.028068px;}
._3{margin-left:-6.623438px;}
._10{margin-left:-5.605971px;}
._2{margin-left:-4.448424px;}
._1{margin-left:-3.145325px;}
._c{margin-left:-2.099999px;}
._0{margin-left:-1.059389px;}
._4{width:1.092190px;}
._f{width:3.814879px;}
._12{width:5.378764px;}
._8{width:10.964069px;}
._b{width:18.883582px;}
._7{width:23.634379px;}
._6{width:33.009372px;}
._a{width:36.621084px;}
._9{width:40.543948px;}
._5{width:54.005860px;}
._e{width:63.888355px;}
._d{width:71.989795px;}
._15{width:81.466448px;}
._14{width:88.961985px;}
.fc4{color:transparent;}
.fc3{color:rgb(127,0,0);}
.fc2{color:rgb(0,0,127);}
.fc1{color:rgb(26,188,203);}
.fc0{color:rgb(0,0,0);}
.fs6{font-size:34.640640px;}
.fs9{font-size:36.621810px;}
.fs8{font-size:42.053238px;}
.fs0{font-size:48.000000px;}
.fs7{font-size:51.528540px;}
.fs5{font-size:54.000000px;}
.fs2{font-size:57.000000px;}
.fs4{font-size:66.000000px;}
.fs1{font-size:72.000000px;}
.fs3{font-size:108.000000px;}
.y0{bottom:0.000000px;}
.yfb{bottom:0.601234px;}
.y2c{bottom:2.925000px;}
.yc{bottom:3.150000px;}
.yd7{bottom:3.337190px;}
.y11{bottom:3.600000px;}
.y15b{bottom:3.655208px;}
.y12c{bottom:3.673331px;}
.ya{bottom:3.900000px;}
.y101{bottom:4.132866px;}
.yf{bottom:5.850000px;}
.y25{bottom:7.500000px;}
.y1{bottom:8.625000px;}
.y6{bottom:9.150000px;}
.ycd{bottom:11.645968px;}
.y26{bottom:13.446000px;}
.yfc{bottom:13.450756px;}
.y156{bottom:16.336774px;}
.y24{bottom:16.425000px;}
.y47{bottom:17.700000px;}
.y123{bottom:18.233827px;}
.yce{bottom:20.306128px;}
.y14{bottom:22.575000px;}
.y9{bottom:24.600000px;}
.y5{bottom:26.025000px;}
.y124{bottom:28.702015px;}
.y23{bottom:30.225000px;}
.ycf{bottom:37.347088px;}
.y157{bottom:40.651953px;}
.y125{bottom:42.779923px;}
.y4{bottom:42.900000px;}
.y22{bottom:44.025000px;}
.yfd{bottom:45.281044px;}
.y8{bottom:45.300000px;}
.y2a{bottom:49.500000px;}
.yd0{bottom:54.388048px;}
.ydc{bottom:56.275910px;}
.y126{bottom:56.902953px;}
.y158{bottom:57.259518px;}
.y3{bottom:59.775000px;}
.ydb{bottom:64.517030px;}
.y29{bottom:65.025000px;}
.yde{bottom:65.320190px;}
.y42{bottom:66.000000px;}
.y127{bottom:70.980861px;}
.yd1{bottom:71.429008px;}
.y2b{bottom:73.800000px;}
.y159{bottom:73.909666px;}
.y2{bottom:76.650000px;}
.yfe{bottom:77.143945px;}
.ydd{bottom:78.799310px;}
.y28{bottom:80.550000px;}
.ydf{bottom:81.173870px;}
.y12f{bottom:81.553040px;}
.y128{bottom:85.103890px;}
.y34{bottom:86.700000px;}
.yd2{bottom:88.504888px;}
.y15a{bottom:90.559815px;}
.y15d{bottom:97.594409px;}
.y106{bottom:97.601724px;}
.y129{bottom:99.181798px;}
.ye0{bottom:102.614750px;}
.y105{bottom:102.885030px;}
.yd3{bottom:105.545848px;}
.y33{bottom:107.400000px;}
.yff{bottom:108.974233px;}
.y12a{bottom:113.304828px;}
.y104{bottom:117.984849px;}
.yd4{bottom:122.586808px;}
.y130{bottom:122.794091px;}
.y15c{bottom:123.987862px;}
.ye1{bottom:125.627030px;}
.y12b{bottom:127.382736px;}
.y32{bottom:128.100000px;}
.y153{bottom:134.217158px;}
.ye2{bottom:139.106150px;}
.y191{bottom:139.350000px;}
.yd5{bottom:139.627768px;}
.y100{bottom:140.837134px;}
.y1a1{bottom:142.275000px;}
.y179{bottom:143.175000px;}
.y12e{bottom:145.038991px;}
.y14e{bottom:146.898724px;}
.y31{bottom:148.800000px;}
.yda{bottom:150.210710px;}
.y103{bottom:151.934982px;}
.y5b{bottom:153.075000px;}
.yd6{bottom:156.703648px;}
.yd9{bottom:162.921590px;}
.y8f{bottom:163.875000px;}
.y102{bottom:167.775472px;}
.y30{bottom:169.500000px;}
.y14f{bottom:171.213903px;}
.y19c{bottom:172.875000px;}
.y12d{bottom:175.346890px;}
.y77{bottom:175.575000px;}
.yef{bottom:178.633534px;}
.y83{bottom:179.625000px;}
.yf5{bottom:182.165166px;}
.yd8{bottom:184.290448px;}
.y197{bottom:185.475000px;}
.y11f{bottom:187.091531px;}
.y150{bottom:187.821468px;}
.y2f{bottom:190.200000px;}
.yf0{bottom:191.483056px;}
.yc5{bottom:193.961540px;}
.y40{bottom:195.600000px;}
.y1a2{bottom:196.275000px;}
.y63{bottom:199.200000px;}
.y116{bottom:201.652027px;}
.ybb{bottom:202.270318px;}
.y151{bottom:204.471616px;}
.y4d{bottom:206.475000px;}
.y199{bottom:207.075000px;}
.ybc{bottom:210.930478px;}
.y1b0{bottom:211.275000px;}
.y117{bottom:212.120215px;}
.y152{bottom:221.121765px;}
.yf1{bottom:223.313344px;}
.y118{bottom:226.198123px;}
.ybd{bottom:227.971438px;}
.y155{bottom:228.156359px;}
.y19b{bottom:228.675000px;}
.yf9{bottom:231.117279px;}
.y1af{bottom:232.725000px;}
.y119{bottom:240.321153px;}
.yc9{bottom:242.430500px;}
.ybe{bottom:245.012398px;}
.yfa{bottom:245.466999px;}
.ycb{bottom:251.160500px;}
.y164{bottom:254.025000px;}
.y11a{bottom:254.399061px;}
.y154{bottom:254.549812px;}
.yf2{bottom:255.176245px;}
.y19e{bottom:261.075000px;}
.ybf{bottom:262.053358px;}
.y81{bottom:264.525000px;}
.y149{bottom:264.779258px;}
.yf8{bottom:267.350322px;}
.y11b{bottom:268.522090px;}
.y19f{bottom:271.875000px;}
.yca{bottom:272.601380px;}
.y1ae{bottom:274.875000px;}
.y122{bottom:275.755279px;}
.y144{bottom:277.460824px;}
.yc0{bottom:279.129238px;}
.y11c{bottom:282.599998px;}
.yf3{bottom:287.006533px;}
.y91{bottom:294.225000px;}
.ycc{bottom:294.810500px;}
.y1ad{bottom:295.575000px;}
.yc1{bottom:296.170198px;}
.ya2{bottom:296.175000px;}
.y11d{bottom:296.723028px;}
.y74{bottom:296.925000px;}
.y145{bottom:301.776003px;}
.yc8{bottom:305.146820px;}
.y14c{bottom:309.875184px;}
.y11e{bottom:310.800936px;}
.yc2{bottom:313.211158px;}
.y1a0{bottom:313.875000px;}
.y59{bottom:315.075000px;}
.y1ac{bottom:316.275000px;}
.ya1{bottom:316.875000px;}
.y73{bottom:317.625000px;}
.y146{bottom:318.383568px;}
.yf4{bottom:318.869434px;}
.y121{bottom:328.457191px;}
.yf7{bottom:329.967282px;}
.y189{bottom:330.225000px;}
.y14d{bottom:330.230097px;}
.yc3{bottom:330.252118px;}
.y147{bottom:335.033716px;}
.y1ab{bottom:336.975000px;}
.ya0{bottom:337.575000px;}
.y15f{bottom:342.750000px;}
.yf6{bottom:345.807772px;}
.y72{bottom:347.325000px;}
.yc4{bottom:347.327998px;}
.y188{bottom:351.675000px;}
.y148{bottom:351.683865px;}
.y93{bottom:351.975000px;}
.yc7{bottom:353.545940px;}
.ye5{bottom:356.665834px;}
.y9f{bottom:358.275000px;}
.y14b{bottom:358.718459px;}
.y120{bottom:358.765090px;}
.yeb{bottom:360.197466px;}
.y193{bottom:361.575000px;}
.y15e{bottom:363.450000px;}
.y60{bottom:368.550000px;}
.ye6{bottom:369.515356px;}
.y112{bottom:370.509731px;}
.y187{bottom:373.125000px;}
.yc6{bottom:374.914798px;}
.y71{bottom:377.025000px;}
.y18e{bottom:378.300000px;}
.y9e{bottom:378.975000px;}
.y1aa{bottom:379.125000px;}
.y7f{bottom:381.000000px;}
.yb2{bottom:384.585740px;}
.y109{bottom:385.070227px;}
.y14a{bottom:385.111912px;}
.y131{bottom:389.250000px;}
.y17b{bottom:390.675000px;}
.ya8{bottom:392.894518px;}
.y186{bottom:394.575000px;}
.y140{bottom:395.341208px;}
.y10a{bottom:395.538415px;}
.y70{bottom:397.725000px;}
.y160{bottom:399.000000px;}
.y1a9{bottom:400.575000px;}
.ye7{bottom:401.345644px;}
.ya9{bottom:401.554678px;}
.y21{bottom:402.900000px;}
.y13b{bottom:408.022774px;}
.y9d{bottom:408.675000px;}
.y10b{bottom:409.616323px;}
.y7e{bottom:410.700000px;}
.y6f{bottom:418.425000px;}
.yaa{bottom:418.595638px;}
.y1a8{bottom:421.275000px;}
.y10c{bottom:423.739353px;}
.y9c{bottom:429.375000px;}
.y13c{bottom:432.337953px;}
.ye8{bottom:433.208545px;}
.yab{bottom:435.636598px;}
.y10d{bottom:437.817261px;}
.y6e{bottom:439.125000px;}
.yee{bottom:440.849415px;}
.y190{bottom:442.125000px;}
.y1a7{bottom:442.725000px;}
.ye3{bottom:444.600000px;}
.y178{bottom:444.675000px;}
.y195{bottom:447.375000px;}
.y13d{bottom:448.945518px;}
.y9b{bottom:450.075000px;}
.y10e{bottom:451.940290px;}
.y7d{bottom:452.100000px;}
.yac{bottom:452.677558px;}
.yb7{bottom:454.495580px;}
.y143{bottom:456.704031px;}
.y185{bottom:457.425000px;}
.yba{bottom:459.244700px;}
.y6d{bottom:459.825000px;}
.ye9{bottom:465.038833px;}
.y13e{bottom:465.595666px;}
.y10f{bottom:466.018198px;}
.y76{bottom:466.275000px;}
.y194{bottom:468.075000px;}
.y82{bottom:468.975000px;}
.yad{bottom:469.753438px;}
.y115{bottom:469.957517px;}
.ya7{bottom:470.400000px;}
.y7c{bottom:472.800000px;}
.y62{bottom:475.125000px;}
.y20{bottom:475.350000px;}
.y184{bottom:478.875000px;}
.yb8{bottom:479.114180px;}
.y9a{bottom:479.775000px;}
.y110{bottom:480.141228px;}
.y3f{bottom:481.875000px;}
.y13f{bottom:482.245815px;}
.y4c{bottom:482.400000px;}
.y107{bottom:482.475000px;}
.yb6{bottom:483.863300px;}
.y1a6{bottom:484.875000px;}
.yae{bottom:486.794398px;}
.y176{bottom:488.775000px;}
.y142{bottom:489.280409px;}
.y6c{bottom:489.525000px;}
.y108{bottom:492.075000px;}
.y7b{bottom:493.500000px;}
.y111{bottom:494.219136px;}
.y1f{bottom:494.325000px;}
.yea{bottom:496.901734px;}
.y183{bottom:500.325000px;}
.y99{bottom:500.475000px;}
.y3e{bottom:502.575000px;}
.yaf{bottom:503.835358px;}
.y3a{bottom:505.575000px;}
.yb9{bottom:506.072420px;}
.yed{bottom:507.999582px;}
.ye4{bottom:508.275000px;}
.y175{bottom:509.475000px;}
.y114{bottom:511.875391px;}
.yb5{bottom:513.999260px;}
.y141{bottom:515.673862px;}
.y6b{bottom:519.225000px;}
.yb0{bottom:520.876318px;}
.y98{bottom:521.175000px;}
.y7a{bottom:523.200000px;}
.y3d{bottom:523.275000px;}
.yec{bottom:523.840072px;}
.y137{bottom:525.903308px;}
.y1a5{bottom:526.275000px;}
.y18c{bottom:530.175000px;}
.yb1{bottom:537.952198px;}
.y132{bottom:538.584874px;}
.y97{bottom:541.875000px;}
.y113{bottom:542.183290px;}
.y182{bottom:542.475000px;}
.yb4{bottom:544.170140px;}
.y39{bottom:546.975000px;}
.y6a{bottom:548.925000px;}
.y174{bottom:550.875000px;}
.y4a{bottom:560.775000px;}
.y96{bottom:562.575000px;}
.y133{bottom:562.900053px;}
.y181{bottom:563.925000px;}
.y79{bottom:564.600000px;}
.yb3{bottom:565.538998px;}
.y1a4{bottom:567.675000px;}
.y69{bottom:569.625000px;}
.y173{bottom:571.575000px;}
.y134{bottom:579.507618px;}
.y1e{bottom:580.125000px;}
.y95{bottom:583.275000px;}
.y80{bottom:585.300000px;}
.y180{bottom:585.375000px;}
.y38{bottom:588.375000px;}
.y68{bottom:590.325000px;}
.y172{bottom:592.275000px;}
.y5a{bottom:594.975000px;}
.y135{bottom:596.157766px;}
.y1d{bottom:599.100000px;}
.y13a{bottom:600.850268px;}
.y8e{bottom:605.775000px;}
.y90{bottom:606.000000px;}
.y3c{bottom:606.075000px;}
.y1a3{bottom:609.075000px;}
.y67{bottom:611.025000px;}
.y136{bottom:612.807915px;}
.y94{bottom:612.975000px;}
.y196{bottom:616.575000px;}
.y1c{bottom:618.075000px;}
.y139{bottom:619.842509px;}
.y3b{bottom:626.775000px;}
.y198{bottom:627.375000px;}
.y17f{bottom:627.525000px;}
.y37{bottom:629.775000px;}
.y66{bottom:631.725000px;}
.y171{bottom:633.675000px;}
.y1b{bottom:637.050000px;}
.y19a{bottom:638.175000px;}
.y49{bottom:643.575000px;}
.y138{bottom:646.235962px;}
.y17e{bottom:648.975000px;}
.ya6{bottom:650.475000px;}
.y163{bottom:650.850000px;}
.y5f{bottom:653.475000px;}
.y18b{bottom:654.375000px;}
.y1a{bottom:656.025000px;}
.y19d{bottom:659.775000px;}
.y65{bottom:661.425000px;}
.y48{bottom:664.275000px;}
.y17d{bottom:670.425000px;}
.y36{bottom:671.175000px;}
.y19{bottom:675.000000px;}
.y170{bottom:675.075000px;}
.y64{bottom:691.125000px;}
.y8d{bottom:692.175000px;}
.y18{bottom:694.725000px;}
.y16f{bottom:695.775000px;}
.y46{bottom:698.775000px;}
.y192{bottom:704.625000px;}
.y35{bottom:712.575000px;}
.y8c{bottom:712.875000px;}
.y17a{bottom:713.775000px;}
.y18a{bottom:716.475000px;}
.y17{bottom:731.700000px;}
.ya5{bottom:733.275000px;}
.y16e{bottom:737.175000px;}
.y8b{bottom:742.575000px;}
.y18f{bottom:744.900000px;}
.y177{bottom:746.175000px;}
.y16{bottom:750.675000px;}
.y61{bottom:751.050000px;}
.y2e{bottom:753.975000px;}
.y75{bottom:756.975000px;}
.y16d{bottom:757.875000px;}
.y4b{bottom:758.325000px;}
.y58{bottom:765.975000px;}
.y15{bottom:769.650000px;}
.y8a{bottom:772.275000px;}
.y162{bottom:774.675000px;}
.y16c{bottom:778.575000px;}
.y13{bottom:788.625000px;}
.y89{bottom:792.975000px;}
.y17c{bottom:795.375000px;}
.y57{bottom:795.675000px;}
.y16b{bottom:799.275000px;}
.y88{bottom:813.675000px;}
.y45{bottom:816.075000px;}
.y16a{bottom:819.975000px;}
.y56{bottom:825.375000px;}
.y12{bottom:826.575000px;}
.y87{bottom:834.375000px;}
.y44{bottom:836.775000px;}
.y169{bottom:840.675000px;}
.y10{bottom:845.550000px;}
.y55{bottom:846.075000px;}
.y92{bottom:855.075000px;}
.y161{bottom:857.475000px;}
.y168{bottom:861.375000px;}
.y86{bottom:864.075000px;}
.y54{bottom:866.775000px;}
.y43{bottom:878.175000px;}
.y167{bottom:882.075000px;}
.ye{bottom:882.525000px;}
.y85{bottom:893.775000px;}
.y53{bottom:896.475000px;}
.ya4{bottom:898.875000px;}
.y166{bottom:902.775000px;}
.y41{bottom:919.575000px;}
.y165{bottom:923.475000px;}
.y52{bottom:926.175000px;}
.yd{bottom:931.575000px;}
.y84{bottom:935.175000px;}
.ya3{bottom:940.275000px;}
.y78{bottom:944.175000px;}
.yb{bottom:948.000000px;}
.y51{bottom:955.875000px;}
.y5e{bottom:964.875000px;}
.y50{bottom:976.575000px;}
.y7{bottom:981.675000px;}
.y5d{bottom:985.575000px;}
.y4f{bottom:997.275000px;}
.y18d{bottom:1002.375000px;}
.y5c{bottom:1006.275000px;}
.y2d{bottom:1023.075000px;}
.y4e{bottom:1026.975000px;}
.y27{bottom:1080.000000px;}
.h18{height:16.275000px;}
.h7{height:16.425000px;}
.hc{height:18.975000px;}
.h10{height:19.725000px;}
.h19{height:20.700000px;}
.h29{height:21.450000px;}
.h21{height:25.236248px;}
.h28{height:26.679561px;}
.h26{height:30.636441px;}
.ha{height:31.800000px;}
.h3{height:32.625000px;}
.h13{height:33.351562px;}
.h1f{height:34.500000px;}
.h22{height:34.734488px;}
.h17{height:37.520508px;}
.h24{height:37.539347px;}
.hf{height:37.950000px;}
.h8{height:38.630859px;}
.h4{height:39.585938px;}
.h9{height:39.604980px;}
.h1e{height:41.400000px;}
.h2a{height:42.150000px;}
.he{height:44.730469px;}
.h14{height:45.000000px;}
.hd{height:45.858398px;}
.h1a{height:48.761719px;}
.h6{height:48.796875px;}
.h1c{height:50.027344px;}
.h12{height:55.200000px;}
.h5{height:62.100000px;}
.h15{height:62.320312px;}
.h11{height:68.550000px;}
.hb{height:73.195312px;}
.h2{height:93.525000px;}
.h16{height:109.125000px;}
.h1d{height:124.200000px;}
.h1b{height:207.000000px;}
.h23{height:535.500000px;}
.h25{height:551.700000px;}
.h20{height:573.375000px;}
.h27{height:654.525000px;}
.h0{height:1262.925000px;}
.h1{height:1263.000000px;}
.w14{width:63.750000px;}
.w15{width:63.825000px;}
.wb{width:127.575000px;}
.w1b{width:148.800000px;}
.wd{width:165.225000px;}
.w1c{width:170.100000px;}
.w4{width:174.300000px;}
.w6{width:195.000000px;}
.w16{width:208.350000px;}
.we{width:225.000000px;}
.w1e{width:233.775000px;}
.w9{width:255.150000px;}
.w17{width:320.475000px;}
.wf{width:320.550000px;}
.w5{width:348.675000px;}
.w3{width:382.650000px;}
.wc{width:425.175000px;}
.w1a{width:462.750000px;}
.wa{width:462.825000px;}
.w7{width:467.700000px;}
.w1d{width:484.125000px;}
.w19{width:590.325000px;}
.w10{width:590.400000px;}
.w11{width:673.425000px;}
.w13{width:681.000000px;}
.w12{width:688.575000px;}
.w2{width:710.175000px;}
.w18{width:717.900000px;}
.w8{width:717.975000px;}
.w0{width:893.025000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.xd{left:3.000000px;}
.x4{left:8.100000px;}
.x2{left:10.800000px;}
.x44{left:12.000000px;}
.x43{left:16.125000px;}
.x42{left:18.375000px;}
.x3d{left:26.775000px;}
.x46{left:36.300000px;}
.x17{left:39.827369px;}
.x49{left:43.575000px;}
.x35{left:47.859533px;}
.x4a{left:48.900000px;}
.x40{left:51.000000px;}
.x4b{left:53.400000px;}
.x34{left:55.513965px;}
.x30{left:56.654910px;}
.x2f{left:64.426802px;}
.x8{left:66.975000px;}
.x16{left:85.221291px;}
.x24{left:87.275615px;}
.x21{left:89.595012px;}
.x15{left:97.547232px;}
.x19{left:101.556476px;}
.x26{left:105.916768px;}
.x22{left:116.102412px;}
.x3{left:119.400000px;}
.x12{left:127.500000px;}
.x13{left:132.000000px;}
.x36{left:134.957696px;}
.xf{left:147.450000px;}
.x2c{left:150.566110px;}
.x29{left:156.753472px;}
.x28{left:170.842262px;}
.x23{left:176.903761px;}
.x32{left:180.387781px;}
.x3b{left:181.500000px;}
.x1{left:182.850000px;}
.x27{left:186.582410px;}
.x31{left:189.503411px;}
.x2e{left:190.533124px;}
.x10{left:217.200000px;}
.x7{left:234.225000px;}
.xa{left:246.975000px;}
.x14{left:248.700000px;}
.x11{left:255.450000px;}
.x18{left:264.676389px;}
.x3a{left:267.673185px;}
.x25{left:275.411886px;}
.x1c{left:287.969767px;}
.x45{left:289.575000px;}
.x5{left:293.700000px;}
.x2a{left:305.333773px;}
.x1d{left:318.784619px;}
.x37{left:325.158746px;}
.x3c{left:327.750000px;}
.x2b{left:336.855874px;}
.x1b{left:342.906353px;}
.x20{left:362.919440px;}
.x9{left:374.550000px;}
.x1f{left:379.619102px;}
.x3e{left:391.500000px;}
.x1e{left:400.394277px;}
.x38{left:403.017469px;}
.x39{left:436.032041px;}
.x47{left:438.375000px;}
.x1a{left:443.203728px;}
.x3f{left:455.325000px;}
.x33{left:494.786214px;}
.xe{left:516.825000px;}
.x41{left:519.075000px;}
.x2d{left:552.326575px;}
.x48{left:587.175000px;}
.x4c{left:603.600000px;}
.x6{left:642.375000px;}
.xc{left:660.000000px;}
.xb{left:672.150000px;}
@media print{
.v2{vertical-align:-4.533333pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:8.442880pt;}
.ls0{letter-spacing:0.000000pt;}
.ws8{word-spacing:-72.026049pt;}
.ws2{word-spacing:-64.000000pt;}
.wsa{word-spacing:-58.666667pt;}
.ws7{word-spacing:-50.666667pt;}
.ws39{word-spacing:-48.106266pt;}
.ws2a{word-spacing:-48.106263pt;}
.ws1c{word-spacing:-48.106261pt;}
.ws35{word-spacing:-48.106259pt;}
.ws2b{word-spacing:-48.106257pt;}
.ws43{word-spacing:-48.106255pt;}
.ws4b{word-spacing:-48.106252pt;}
.ws1f{word-spacing:-48.106249pt;}
.ws2f{word-spacing:-48.093747pt;}
.ws26{word-spacing:-48.085427pt;}
.ws45{word-spacing:-48.085421pt;}
.ws28{word-spacing:-48.085419pt;}
.ws4d{word-spacing:-48.085416pt;}
.ws36{word-spacing:-48.085414pt;}
.ws2e{word-spacing:-48.020832pt;}
.ws44{word-spacing:-48.000017pt;}
.ws52{word-spacing:-48.000015pt;}
.ws20{word-spacing:-48.000013pt;}
.ws31{word-spacing:-48.000011pt;}
.ws22{word-spacing:-48.000009pt;}
.ws29{word-spacing:-48.000006pt;}
.ws25{word-spacing:-48.000004pt;}
.ws27{word-spacing:-48.000002pt;}
.ws4{word-spacing:-48.000000pt;}
.ws21{word-spacing:-47.999996pt;}
.ws30{word-spacing:-47.999994pt;}
.ws4a{word-spacing:-47.999991pt;}
.ws46{word-spacing:-47.999987pt;}
.ws37{word-spacing:-47.979176pt;}
.ws4c{word-spacing:-47.979174pt;}
.ws2d{word-spacing:-47.979168pt;}
.ws1d{word-spacing:-47.979166pt;}
.ws4e{word-spacing:-47.979155pt;}
.ws50{word-spacing:-47.914590pt;}
.ws51{word-spacing:-47.914587pt;}
.ws34{word-spacing:-47.914586pt;}
.ws32{word-spacing:-47.914581pt;}
.ws4f{word-spacing:-47.914577pt;}
.ws49{word-spacing:-47.914573pt;}
.ws47{word-spacing:-47.914566pt;}
.ws23{word-spacing:-47.872937pt;}
.ws38{word-spacing:-47.872928pt;}
.ws2c{word-spacing:-47.872926pt;}
.ws48{word-spacing:-47.872922pt;}
.ws33{word-spacing:-47.872919pt;}
.ws1e{word-spacing:-47.872915pt;}
.ws3{word-spacing:-47.860416pt;}
.wsb{word-spacing:-44.094266pt;}
.ws13{word-spacing:-44.069794pt;}
.wsf{word-spacing:-44.069791pt;}
.ws12{word-spacing:-44.032811pt;}
.wse{word-spacing:-44.032808pt;}
.ws9{word-spacing:-44.000004pt;}
.ws11{word-spacing:-44.000000pt;}
.wsc{word-spacing:-43.999997pt;}
.wsd{word-spacing:-43.905730pt;}
.ws10{word-spacing:-43.905727pt;}
.ws5{word-spacing:-37.954954pt;}
.ws6{word-spacing:-37.954953pt;}
.ws18{word-spacing:-36.013028pt;}
.ws1b{word-spacing:-36.013025pt;}
.ws24{word-spacing:-36.000002pt;}
.ws1{word-spacing:-33.091665pt;}
.ws0{word-spacing:-32.983334pt;}
.ws14{word-spacing:-32.070835pt;}
.ws15{word-spacing:-32.004169pt;}
.ws16{word-spacing:-32.000000pt;}
.ws19{word-spacing:-23.971360pt;}
.ws1a{word-spacing:-23.971358pt;}
.ws3e{word-spacing:-12.725580pt;}
.ws40{word-spacing:-10.385542pt;}
.ws42{word-spacing:-9.044187pt;}
.ws3b{word-spacing:-8.554914pt;}
.ws3d{word-spacing:-2.948067pt;}
.ws17{word-spacing:0.000000pt;}
.ws3a{word-spacing:40.994146pt;}
.ws3f{word-spacing:59.308774pt;}
.ws41{word-spacing:62.333675pt;}
.ws3c{word-spacing:552.409183pt;}
._11{margin-left:-10.072645pt;}
._13{margin-left:-8.234605pt;}
._16{margin-left:-7.136060pt;}
._3{margin-left:-5.887501pt;}
._10{margin-left:-4.983085pt;}
._2{margin-left:-3.954155pt;}
._1{margin-left:-2.795844pt;}
._c{margin-left:-1.866666pt;}
._0{margin-left:-0.941679pt;}
._4{width:0.970835pt;}
._f{width:3.391003pt;}
._12{width:4.781123pt;}
._8{width:9.745839pt;}
._b{width:16.785406pt;}
._7{width:21.008337pt;}
._6{width:29.341664pt;}
._a{width:32.552075pt;}
._9{width:36.039065pt;}
._5{width:48.005209pt;}
._e{width:56.789649pt;}
._d{width:63.990929pt;}
._15{width:72.414621pt;}
._14{width:79.077320pt;}
.fs6{font-size:30.791680pt;}
.fs9{font-size:32.552720pt;}
.fs8{font-size:37.380656pt;}
.fs0{font-size:42.666667pt;}
.fs7{font-size:45.803147pt;}
.fs5{font-size:48.000000pt;}
.fs2{font-size:50.666667pt;}
.fs4{font-size:58.666667pt;}
.fs1{font-size:64.000000pt;}
.fs3{font-size:96.000000pt;}
.y0{bottom:0.000000pt;}
.yfb{bottom:0.534430pt;}
.y2c{bottom:2.600000pt;}
.yc{bottom:2.800000pt;}
.yd7{bottom:2.966391pt;}
.y11{bottom:3.200000pt;}
.y15b{bottom:3.249074pt;}
.y12c{bottom:3.265184pt;}
.ya{bottom:3.466667pt;}
.y101{bottom:3.673659pt;}
.yf{bottom:5.200000pt;}
.y25{bottom:6.666667pt;}
.y1{bottom:7.666667pt;}
.y6{bottom:8.133333pt;}
.ycd{bottom:10.351971pt;}
.y26{bottom:11.952000pt;}
.yfc{bottom:11.956227pt;}
.y156{bottom:14.521577pt;}
.y24{bottom:14.600000pt;}
.y47{bottom:15.733333pt;}
.y123{bottom:16.207847pt;}
.yce{bottom:18.049891pt;}
.y14{bottom:20.066667pt;}
.y9{bottom:21.866667pt;}
.y5{bottom:23.133333pt;}
.y124{bottom:25.512903pt;}
.y23{bottom:26.866667pt;}
.ycf{bottom:33.197411pt;}
.y157{bottom:36.135069pt;}
.y125{bottom:38.026599pt;}
.y4{bottom:38.133333pt;}
.y22{bottom:39.133333pt;}
.yfd{bottom:40.249817pt;}
.y8{bottom:40.266667pt;}
.y2a{bottom:44.000000pt;}
.yd0{bottom:48.344931pt;}
.ydc{bottom:50.023031pt;}
.y126{bottom:50.580403pt;}
.y158{bottom:50.897349pt;}
.y3{bottom:53.133333pt;}
.ydb{bottom:57.348471pt;}
.y29{bottom:57.800000pt;}
.yde{bottom:58.062391pt;}
.y42{bottom:58.666667pt;}
.y127{bottom:63.094099pt;}
.yd1{bottom:63.492451pt;}
.y2b{bottom:65.600000pt;}
.y159{bottom:65.697481pt;}
.y2{bottom:68.133333pt;}
.yfe{bottom:68.572395pt;}
.ydd{bottom:70.043831pt;}
.y28{bottom:71.600000pt;}
.ydf{bottom:72.154551pt;}
.y12f{bottom:72.491592pt;}
.y128{bottom:75.647903pt;}
.y34{bottom:77.066667pt;}
.yd2{bottom:78.671011pt;}
.y15a{bottom:80.497613pt;}
.y15d{bottom:86.750586pt;}
.y106{bottom:86.757088pt;}
.y129{bottom:88.161599pt;}
.ye0{bottom:91.213111pt;}
.y105{bottom:91.453360pt;}
.yd3{bottom:93.818531pt;}
.y33{bottom:95.466667pt;}
.yff{bottom:96.865985pt;}
.y12a{bottom:100.715403pt;}
.y104{bottom:104.875421pt;}
.yd4{bottom:108.966051pt;}
.y130{bottom:109.150304pt;}
.y15c{bottom:110.211433pt;}
.ye1{bottom:111.668471pt;}
.y12b{bottom:113.229099pt;}
.y32{bottom:113.866667pt;}
.y153{bottom:119.304140pt;}
.ye2{bottom:123.649911pt;}
.y191{bottom:123.866667pt;}
.yd5{bottom:124.113571pt;}
.y100{bottom:125.188563pt;}
.y1a1{bottom:126.466667pt;}
.y179{bottom:127.266667pt;}
.y12e{bottom:128.923548pt;}
.y14e{bottom:130.576644pt;}
.y31{bottom:132.266667pt;}
.yda{bottom:133.520631pt;}
.y103{bottom:135.053317pt;}
.y5b{bottom:136.066667pt;}
.yd6{bottom:139.292131pt;}
.yd9{bottom:144.819191pt;}
.y8f{bottom:145.666667pt;}
.y102{bottom:149.133753pt;}
.y30{bottom:150.666667pt;}
.y14f{bottom:152.190136pt;}
.y19c{bottom:153.666667pt;}
.y12d{bottom:155.863903pt;}
.y77{bottom:156.066667pt;}
.yef{bottom:158.785363pt;}
.y83{bottom:159.666667pt;}
.yf5{bottom:161.924592pt;}
.yd8{bottom:163.813731pt;}
.y197{bottom:164.866667pt;}
.y11f{bottom:166.303584pt;}
.y150{bottom:166.952416pt;}
.y2f{bottom:169.066667pt;}
.yf0{bottom:170.207161pt;}
.yc5{bottom:172.410258pt;}
.y40{bottom:173.866667pt;}
.y1a2{bottom:174.466667pt;}
.y63{bottom:177.066667pt;}
.y116{bottom:179.246247pt;}
.ybb{bottom:179.795838pt;}
.y151{bottom:181.752548pt;}
.y4d{bottom:183.533333pt;}
.y199{bottom:184.066667pt;}
.ybc{bottom:187.493758pt;}
.y1b0{bottom:187.800000pt;}
.y117{bottom:188.551303pt;}
.y152{bottom:196.552680pt;}
.yf1{bottom:198.500750pt;}
.y118{bottom:201.064999pt;}
.ybd{bottom:202.641278pt;}
.y155{bottom:202.805652pt;}
.y19b{bottom:203.266667pt;}
.yf9{bottom:205.437581pt;}
.y1af{bottom:206.866667pt;}
.y119{bottom:213.618803pt;}
.yc9{bottom:215.493778pt;}
.ybe{bottom:217.788798pt;}
.yfa{bottom:218.192888pt;}
.ycb{bottom:223.253778pt;}
.y164{bottom:225.800000pt;}
.y11a{bottom:226.132499pt;}
.y154{bottom:226.266500pt;}
.yf2{bottom:226.823329pt;}
.y19e{bottom:232.066667pt;}
.ybf{bottom:232.936318pt;}
.y81{bottom:235.133333pt;}
.y149{bottom:235.359340pt;}
.yf8{bottom:237.644731pt;}
.y11b{bottom:238.686303pt;}
.y19f{bottom:241.666667pt;}
.yca{bottom:242.312338pt;}
.y1ae{bottom:244.333333pt;}
.y122{bottom:245.115804pt;}
.y144{bottom:246.631844pt;}
.yc0{bottom:248.114878pt;}
.y11c{bottom:251.199999pt;}
.yf3{bottom:255.116918pt;}
.y91{bottom:261.533333pt;}
.ycc{bottom:262.053778pt;}
.y1ad{bottom:262.733333pt;}
.yc1{bottom:263.262398pt;}
.ya2{bottom:263.266667pt;}
.y11d{bottom:263.753803pt;}
.y74{bottom:263.933333pt;}
.y145{bottom:268.245336pt;}
.yc8{bottom:271.241618pt;}
.y14c{bottom:275.444608pt;}
.y11e{bottom:276.267499pt;}
.yc2{bottom:278.409918pt;}
.y1a0{bottom:279.000000pt;}
.y59{bottom:280.066667pt;}
.y1ac{bottom:281.133333pt;}
.ya1{bottom:281.666667pt;}
.y73{bottom:282.333333pt;}
.y146{bottom:283.007616pt;}
.yf4{bottom:283.439497pt;}
.y121{bottom:291.961948pt;}
.yf7{bottom:293.304251pt;}
.y189{bottom:293.533333pt;}
.y14d{bottom:293.537864pt;}
.yc3{bottom:293.557438pt;}
.y147{bottom:297.807748pt;}
.y1ab{bottom:299.533333pt;}
.ya0{bottom:300.066667pt;}
.y15f{bottom:304.666667pt;}
.yf6{bottom:307.384686pt;}
.y72{bottom:308.733333pt;}
.yc4{bottom:308.735998pt;}
.y188{bottom:312.600000pt;}
.y148{bottom:312.607880pt;}
.y93{bottom:312.866667pt;}
.yc7{bottom:314.263058pt;}
.ye5{bottom:317.036297pt;}
.y9f{bottom:318.466667pt;}
.y14b{bottom:318.860852pt;}
.y120{bottom:318.902303pt;}
.yeb{bottom:320.175525pt;}
.y193{bottom:321.400000pt;}
.y15e{bottom:323.066667pt;}
.y60{bottom:327.600000pt;}
.ye6{bottom:328.458094pt;}
.y112{bottom:329.341984pt;}
.y187{bottom:331.666667pt;}
.yc6{bottom:333.257598pt;}
.y71{bottom:335.133333pt;}
.y18e{bottom:336.266667pt;}
.y9e{bottom:336.866667pt;}
.y1aa{bottom:337.000000pt;}
.y7f{bottom:338.666667pt;}
.yb2{bottom:341.853991pt;}
.y109{bottom:342.284647pt;}
.y14a{bottom:342.321700pt;}
.y131{bottom:346.000000pt;}
.y17b{bottom:347.266667pt;}
.ya8{bottom:349.239571pt;}
.y186{bottom:350.733333pt;}
.y140{bottom:351.414407pt;}
.y10a{bottom:351.589703pt;}
.y70{bottom:353.533333pt;}
.y160{bottom:354.666667pt;}
.y1a9{bottom:356.066667pt;}
.ye7{bottom:356.751683pt;}
.ya9{bottom:356.937491pt;}
.y21{bottom:358.133333pt;}
.y13b{bottom:362.686911pt;}
.y9d{bottom:363.266667pt;}
.y10b{bottom:364.103399pt;}
.y7e{bottom:365.066667pt;}
.y6f{bottom:371.933333pt;}
.yaa{bottom:372.085011pt;}
.y1a8{bottom:374.466667pt;}
.y10c{bottom:376.657203pt;}
.y9c{bottom:381.666667pt;}
.y13c{bottom:384.300403pt;}
.ye8{bottom:385.074262pt;}
.yab{bottom:387.232531pt;}
.y10d{bottom:389.170899pt;}
.y6e{bottom:390.333333pt;}
.yee{bottom:391.866147pt;}
.y190{bottom:393.000000pt;}
.y1a7{bottom:393.533333pt;}
.ye3{bottom:395.200000pt;}
.y178{bottom:395.266667pt;}
.y195{bottom:397.666667pt;}
.y13d{bottom:399.062683pt;}
.y9b{bottom:400.066667pt;}
.y10e{bottom:401.724703pt;}
.y7d{bottom:401.866667pt;}
.yac{bottom:402.380051pt;}
.yb7{bottom:403.996071pt;}
.y143{bottom:405.959139pt;}
.y185{bottom:406.600000pt;}
.yba{bottom:408.217511pt;}
.y6d{bottom:408.733333pt;}
.ye9{bottom:413.367851pt;}
.y13e{bottom:413.862815pt;}
.y10f{bottom:414.238399pt;}
.y76{bottom:414.466667pt;}
.y194{bottom:416.066667pt;}
.y82{bottom:416.866667pt;}
.yad{bottom:417.558611pt;}
.y115{bottom:417.740016pt;}
.ya7{bottom:418.133333pt;}
.y7c{bottom:420.266667pt;}
.y62{bottom:422.333333pt;}
.y20{bottom:422.533333pt;}
.y184{bottom:425.666667pt;}
.yb8{bottom:425.879271pt;}
.y9a{bottom:426.466667pt;}
.y110{bottom:426.792203pt;}
.y3f{bottom:428.333333pt;}
.y13f{bottom:428.662947pt;}
.y4c{bottom:428.800000pt;}
.y107{bottom:428.866667pt;}
.yb6{bottom:430.100711pt;}
.y1a6{bottom:431.000000pt;}
.yae{bottom:432.706131pt;}
.y176{bottom:434.466667pt;}
.y142{bottom:434.915919pt;}
.y6c{bottom:435.133333pt;}
.y108{bottom:437.400000pt;}
.y7b{bottom:438.666667pt;}
.y111{bottom:439.305899pt;}
.y1f{bottom:439.400000pt;}
.yea{bottom:441.690430pt;}
.y183{bottom:444.733333pt;}
.y99{bottom:444.866667pt;}
.y3e{bottom:446.733333pt;}
.yaf{bottom:447.853651pt;}
.y3a{bottom:449.400000pt;}
.yb9{bottom:449.842151pt;}
.yed{bottom:451.555184pt;}
.ye4{bottom:451.800000pt;}
.y175{bottom:452.866667pt;}
.y114{bottom:455.000348pt;}
.yb5{bottom:456.888231pt;}
.y141{bottom:458.376767pt;}
.y6b{bottom:461.533333pt;}
.yb0{bottom:463.001171pt;}
.y98{bottom:463.266667pt;}
.y7a{bottom:465.066667pt;}
.y3d{bottom:465.133333pt;}
.yec{bottom:465.635619pt;}
.y137{bottom:467.469607pt;}
.y1a5{bottom:467.800000pt;}
.y18c{bottom:471.266667pt;}
.yb1{bottom:478.179731pt;}
.y132{bottom:478.742111pt;}
.y97{bottom:481.666667pt;}
.y113{bottom:481.940703pt;}
.y182{bottom:482.200000pt;}
.yb4{bottom:483.706791pt;}
.y39{bottom:486.200000pt;}
.y6a{bottom:487.933333pt;}
.y174{bottom:489.666667pt;}
.y4a{bottom:498.466667pt;}
.y96{bottom:500.066667pt;}
.y133{bottom:500.355603pt;}
.y181{bottom:501.266667pt;}
.y79{bottom:501.866667pt;}
.yb3{bottom:502.701331pt;}
.y1a4{bottom:504.600000pt;}
.y69{bottom:506.333333pt;}
.y173{bottom:508.066667pt;}
.y134{bottom:515.117883pt;}
.y1e{bottom:515.666667pt;}
.y95{bottom:518.466667pt;}
.y80{bottom:520.266667pt;}
.y180{bottom:520.333333pt;}
.y38{bottom:523.000000pt;}
.y68{bottom:524.733333pt;}
.y172{bottom:526.466667pt;}
.y5a{bottom:528.866667pt;}
.y135{bottom:529.918015pt;}
.y1d{bottom:532.533333pt;}
.y13a{bottom:534.089127pt;}
.y8e{bottom:538.466667pt;}
.y90{bottom:538.666667pt;}
.y3c{bottom:538.733333pt;}
.y1a3{bottom:541.400000pt;}
.y67{bottom:543.133333pt;}
.y136{bottom:544.718147pt;}
.y94{bottom:544.866667pt;}
.y196{bottom:548.066667pt;}
.y1c{bottom:549.400000pt;}
.y139{bottom:550.971119pt;}
.y3b{bottom:557.133333pt;}
.y198{bottom:557.666667pt;}
.y17f{bottom:557.800000pt;}
.y37{bottom:559.800000pt;}
.y66{bottom:561.533333pt;}
.y171{bottom:563.266667pt;}
.y1b{bottom:566.266667pt;}
.y19a{bottom:567.266667pt;}
.y49{bottom:572.066667pt;}
.y138{bottom:574.431967pt;}
.y17e{bottom:576.866667pt;}
.ya6{bottom:578.200000pt;}
.y163{bottom:578.533333pt;}
.y5f{bottom:580.866667pt;}
.y18b{bottom:581.666667pt;}
.y1a{bottom:583.133333pt;}
.y19d{bottom:586.466667pt;}
.y65{bottom:587.933333pt;}
.y48{bottom:590.466667pt;}
.y17d{bottom:595.933333pt;}
.y36{bottom:596.600000pt;}
.y19{bottom:600.000000pt;}
.y170{bottom:600.066667pt;}
.y64{bottom:614.333333pt;}
.y8d{bottom:615.266667pt;}
.y18{bottom:617.533333pt;}
.y16f{bottom:618.466667pt;}
.y46{bottom:621.133333pt;}
.y192{bottom:626.333333pt;}
.y35{bottom:633.400000pt;}
.y8c{bottom:633.666667pt;}
.y17a{bottom:634.466667pt;}
.y18a{bottom:636.866667pt;}
.y17{bottom:650.400000pt;}
.ya5{bottom:651.800000pt;}
.y16e{bottom:655.266667pt;}
.y8b{bottom:660.066667pt;}
.y18f{bottom:662.133333pt;}
.y177{bottom:663.266667pt;}
.y16{bottom:667.266667pt;}
.y61{bottom:667.600000pt;}
.y2e{bottom:670.200000pt;}
.y75{bottom:672.866667pt;}
.y16d{bottom:673.666667pt;}
.y4b{bottom:674.066667pt;}
.y58{bottom:680.866667pt;}
.y15{bottom:684.133333pt;}
.y8a{bottom:686.466667pt;}
.y162{bottom:688.600000pt;}
.y16c{bottom:692.066667pt;}
.y13{bottom:701.000000pt;}
.y89{bottom:704.866667pt;}
.y17c{bottom:707.000000pt;}
.y57{bottom:707.266667pt;}
.y16b{bottom:710.466667pt;}
.y88{bottom:723.266667pt;}
.y45{bottom:725.400000pt;}
.y16a{bottom:728.866667pt;}
.y56{bottom:733.666667pt;}
.y12{bottom:734.733333pt;}
.y87{bottom:741.666667pt;}
.y44{bottom:743.800000pt;}
.y169{bottom:747.266667pt;}
.y10{bottom:751.600000pt;}
.y55{bottom:752.066667pt;}
.y92{bottom:760.066667pt;}
.y161{bottom:762.200000pt;}
.y168{bottom:765.666667pt;}
.y86{bottom:768.066667pt;}
.y54{bottom:770.466667pt;}
.y43{bottom:780.600000pt;}
.y167{bottom:784.066667pt;}
.ye{bottom:784.466667pt;}
.y85{bottom:794.466667pt;}
.y53{bottom:796.866667pt;}
.ya4{bottom:799.000000pt;}
.y166{bottom:802.466667pt;}
.y41{bottom:817.400000pt;}
.y165{bottom:820.866667pt;}
.y52{bottom:823.266667pt;}
.yd{bottom:828.066667pt;}
.y84{bottom:831.266667pt;}
.ya3{bottom:835.800000pt;}
.y78{bottom:839.266667pt;}
.yb{bottom:842.666667pt;}
.y51{bottom:849.666667pt;}
.y5e{bottom:857.666667pt;}
.y50{bottom:868.066667pt;}
.y7{bottom:872.600000pt;}
.y5d{bottom:876.066667pt;}
.y4f{bottom:886.466667pt;}
.y18d{bottom:891.000000pt;}
.y5c{bottom:894.466667pt;}
.y2d{bottom:909.400000pt;}
.y4e{bottom:912.866667pt;}
.y27{bottom:960.000000pt;}
.h18{height:14.466667pt;}
.h7{height:14.600000pt;}
.hc{height:16.866667pt;}
.h10{height:17.533333pt;}
.h19{height:18.400000pt;}
.h29{height:19.066667pt;}
.h21{height:22.432220pt;}
.h28{height:23.715165pt;}
.h26{height:27.232392pt;}
.ha{height:28.266667pt;}
.h3{height:29.000000pt;}
.h13{height:29.645833pt;}
.h1f{height:30.666667pt;}
.h22{height:30.875100pt;}
.h17{height:33.351562pt;}
.h24{height:33.368308pt;}
.hf{height:33.733333pt;}
.h8{height:34.338542pt;}
.h4{height:35.187500pt;}
.h9{height:35.204427pt;}
.h1e{height:36.800000pt;}
.h2a{height:37.466667pt;}
.he{height:39.760417pt;}
.h14{height:40.000000pt;}
.hd{height:40.763021pt;}
.h1a{height:43.343750pt;}
.h6{height:43.375000pt;}
.h1c{height:44.468750pt;}
.h12{height:49.066667pt;}
.h5{height:55.200000pt;}
.h15{height:55.395833pt;}
.h11{height:60.933333pt;}
.hb{height:65.062500pt;}
.h2{height:83.133333pt;}
.h16{height:97.000000pt;}
.h1d{height:110.400000pt;}
.h1b{height:184.000000pt;}
.h23{height:476.000000pt;}
.h25{height:490.400000pt;}
.h20{height:509.666667pt;}
.h27{height:581.800000pt;}
.h0{height:1122.600000pt;}
.h1{height:1122.666667pt;}
.w14{width:56.666667pt;}
.w15{width:56.733333pt;}
.wb{width:113.400000pt;}
.w1b{width:132.266667pt;}
.wd{width:146.866667pt;}
.w1c{width:151.200000pt;}
.w4{width:154.933333pt;}
.w6{width:173.333333pt;}
.w16{width:185.200000pt;}
.we{width:200.000000pt;}
.w1e{width:207.800000pt;}
.w9{width:226.800000pt;}
.w17{width:284.866667pt;}
.wf{width:284.933333pt;}
.w5{width:309.933333pt;}
.w3{width:340.133333pt;}
.wc{width:377.933333pt;}
.w1a{width:411.333333pt;}
.wa{width:411.400000pt;}
.w7{width:415.733333pt;}
.w1d{width:430.333333pt;}
.w19{width:524.733333pt;}
.w10{width:524.800000pt;}
.w11{width:598.600000pt;}
.w13{width:605.333333pt;}
.w12{width:612.066667pt;}
.w2{width:631.266667pt;}
.w18{width:638.133333pt;}
.w8{width:638.200000pt;}
.w0{width:793.800000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.xd{left:2.666667pt;}
.x4{left:7.200000pt;}
.x2{left:9.600000pt;}
.x44{left:10.666667pt;}
.x43{left:14.333333pt;}
.x42{left:16.333333pt;}
.x3d{left:23.800000pt;}
.x46{left:32.266667pt;}
.x17{left:35.402105pt;}
.x49{left:38.733333pt;}
.x35{left:42.541807pt;}
.x4a{left:43.466667pt;}
.x40{left:45.333333pt;}
.x4b{left:47.466667pt;}
.x34{left:49.345747pt;}
.x30{left:50.359920pt;}
.x2f{left:57.268268pt;}
.x8{left:59.533333pt;}
.x16{left:75.752259pt;}
.x24{left:77.578324pt;}
.x21{left:79.640011pt;}
.x15{left:86.708651pt;}
.x19{left:90.272423pt;}
.x26{left:94.148238pt;}
.x22{left:103.202144pt;}
.x3{left:106.133333pt;}
.x12{left:113.333333pt;}
.x13{left:117.333333pt;}
.x36{left:119.962397pt;}
.xf{left:131.066667pt;}
.x2c{left:133.836542pt;}
.x29{left:139.336419pt;}
.x28{left:151.859789pt;}
.x23{left:157.247787pt;}
.x32{left:160.344694pt;}
.x3b{left:161.333333pt;}
.x1{left:162.533333pt;}
.x27{left:165.851031pt;}
.x31{left:168.447476pt;}
.x2e{left:169.362777pt;}
.x10{left:193.066667pt;}
.x7{left:208.200000pt;}
.xa{left:219.533333pt;}
.x14{left:221.066667pt;}
.x11{left:227.066667pt;}
.x18{left:235.267901pt;}
.x3a{left:237.931720pt;}
.x25{left:244.810565pt;}
.x1c{left:255.973126pt;}
.x45{left:257.400000pt;}
.x5{left:261.066667pt;}
.x2a{left:271.407798pt;}
.x1d{left:283.364106pt;}
.x37{left:289.029997pt;}
.x3c{left:291.333333pt;}
.x2b{left:299.427443pt;}
.x1b{left:304.805647pt;}
.x20{left:322.595058pt;}
.x9{left:332.933333pt;}
.x1f{left:337.439202pt;}
.x3e{left:348.000000pt;}
.x1e{left:355.906024pt;}
.x38{left:358.237750pt;}
.x39{left:387.584037pt;}
.x47{left:389.666667pt;}
.x1a{left:393.958869pt;}
.x3f{left:404.733333pt;}
.x33{left:439.809968pt;}
.xe{left:459.400000pt;}
.x41{left:461.400000pt;}
.x2d{left:490.956955pt;}
.x48{left:521.933333pt;}
.x4c{left:536.533333pt;}
.x6{left:571.000000pt;}
.xc{left:586.666667pt;}
.xb{left:597.466667pt;}
}




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