
/* 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("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSI0IiBoZWlnaHQ9IjQiPgo8cmVjdCB3aWR0aD0iNCIgaGVpZ2h0PSI0IiBmaWxsPSIjNDAzYzNmIj48L3JlY3Q+CjxwYXRoIGQ9Ik0wIDBMNCA0Wk00IDBMMCA0WiIgc3Ryb2tlLXdpZHRoPSIxIiBzdHJva2U9IiMxZTI5MmQiPjwvcGF0aD4KPC9zdmc+");
  }
  #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("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSI1IiBoZWlnaHQ9IjUiPgo8cmVjdCB3aWR0aD0iNSIgaGVpZ2h0PSI1IiBmaWxsPSIjOWU5ZTllIj48L3JlY3Q+CjxwYXRoIGQ9Ik0wIDVMNSAwWk02IDRMNCA2Wk0tMSAxTDEgLTFaIiBzdHJva2U9IiM4ODgiIHN0cm9rZS13aWR0aD0iMSI+PC9wYXRoPgo8L3N2Zz4=");
    -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(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABYAAAAWCAYAAADEtGw7AAAABmJLR0QA/wD/AP+gvaeTAAAACXBIWXMAAAsTAAALEwEAmpwYAAAAB3RJTUUH3goQDSYgDiGofgAAAslJREFUOMvtlM9LFGEYx7/vvOPM6ywuuyPFihWFBUsdNnA6KLIh+QPx4KWExULdHQ/9A9EfUodYmATDYg/iRewQzklFWxcEBcGgEplDkDtI6sw4PzrIbrOuedBb9MALD7zv+3m+z4/3Bf7bZS2bzQIAcrmcMDExcTeXy10DAFVVAQDksgFUVZ1ljD3yfd+0LOuFpmnvVVW9GHhkZAQcxwkNDQ2FSCQyRMgJxnVdy7KstKZpn7nwha6urqqfTqfPBAJAuVymlNLXoigOhfd5nmeiKL5TVTV+lmIKwAOA7u5u6Lped2BsbOwjY6yf4zgQQkAIAcedaPR9H67r3uYBQFEUFItFtLe332lpaVkUBOHK3t5eRtf1DwAwODiIubk5DA8PM8bYW1EU+wEgCIJqsCAIQAiB7/u253k2BQDDMJBKpa4mEon5eDx+UxAESJL0uK2t7XosFlvSdf0QAEmlUnlRFJ9Waho2Qghc1/U9z3uWz+eX+Wr+lL6SZfleEAQIggA8z6OpqSknimIvYyybSCReMsZ6TislhCAIAti2Dc/zejVNWwCAavN8339j27YbTg0AGGM3WltbP4WhlRWq6Q/btrs1TVsYHx+vNgqKoqBUKn2NRqPFxsbGJzzP05puUlpt0ukyOI6z7zjOwNTU1OLo6CgmJyf/gA3DgKIoWF1d/cIY24/FYgOU0pp0z/Ityzo8Pj5OTk9PbwHA+vp6zWghDC+VSiuRSOQgGo32UErJ38CO42wdHR09LBQK3zKZDDY2NupmFmF4R0cHVlZWlmRZ/iVJUn9FeWWcCCE4ODjYtG27Z2Zm5juAOmgdGAB2d3cBADs7O8uSJN2SZfl+WKlpmpumaT6Yn58vn/fs6XmbhmHMNjc3tzDGFI7jYJrm5vb29sDa2trPC/9aiqJUy5pOp4f6+vqeJ5PJBAB0dnZe/t8NBajx/z37Df5OGX8d13xzAAAAAElFTkSuQmCC);
  }
}
/* Fancy CSS END */



.ff0{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1;src:url("fonts/font_0000_7dbeaf230137.woff")format("woff");}.ff1{font-family:ff1;line-height:1.172852;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("fonts/font_0001_9f00597de967.woff")format("woff");}.ff2{font-family:ff2;line-height:1.202148;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("fonts/font_0002_7e9ecd2da78c.woff")format("woff");}.ff3{font-family:ff3;line-height:0.983398;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("fonts/font_0003_e5b95a08090f.woff")format("woff");}.ff4{font-family:ff4;line-height:0.962402;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("fonts/font_0004_304831cea120.woff")format("woff");}.ff5{font-family:ff5;line-height:0.854980;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("fonts/font_0005_bd1075efa35f.woff")format("woff");}.ff6{font-family:ff6;line-height:0.682617;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("fonts/font_0006_a9f95fe0b72a.woff")format("woff");}.ff7{font-family:ff7;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:ff8;src:url("fonts/font_0007_15d76f5821c5.woff")format("woff");}.ff8{font-family:ff8;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:ff9;src:url("fonts/font_0008_67be80ebcf85.woff")format("woff");}.ff9{font-family:ff9;line-height:0.766602;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url("fonts/font_0009_c36bd86042f8.woff")format("woff");}.ffa{font-family:ffa;line-height:0.740234;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);}
.v2{vertical-align:-23.759995px;}
.v3{vertical-align:-15.119933px;}
.v6{vertical-align:-10.079960px;}
.v5{vertical-align:-5.760130px;}
.v0{vertical-align:0.000000px;}
.v7{vertical-align:7.919771px;}
.v1{vertical-align:23.759995px;}
.v4{vertical-align:40.320099px;}
.ls3{letter-spacing:0.000000px;}
.ls1{letter-spacing:0.004916px;}
.ls6{letter-spacing:0.005344px;}
.ls2{letter-spacing:0.005836px;}
.lsa{letter-spacing:0.035439px;}
.ls15{letter-spacing:0.049958px;}
.ls20{letter-spacing:0.055375px;}
.ls26{letter-spacing:0.060190px;}
.ls8{letter-spacing:0.069658px;}
.ls4{letter-spacing:0.070759px;}
.ls24{letter-spacing:0.070763px;}
.ls13{letter-spacing:0.214525px;}
.ls1d{letter-spacing:0.214800px;}
.ls10{letter-spacing:0.283414px;}
.ls1e{letter-spacing:0.287353px;}
.ls16{letter-spacing:0.287425px;}
.lsc{letter-spacing:5.975228px;}
.lsd{letter-spacing:6.695246px;}
.lsb{letter-spacing:22.535228px;}
.lse{letter-spacing:23.255246px;}
.ls25{letter-spacing:32.615251px;}
.ls9{letter-spacing:39.095228px;}
.ls14{letter-spacing:40.535264px;}
.ls12{letter-spacing:52.055251px;}
.ls0{letter-spacing:52.775269px;}
.ls5{letter-spacing:54.935251px;}
.ls11{letter-spacing:120.389226px;}
.lsf{letter-spacing:163.589114px;}
.ls17{letter-spacing:291.887438px;}
.ls1f{letter-spacing:306.287353px;}
.ls22{letter-spacing:306.287357px;}
.ls19{letter-spacing:307.727389px;}
.ls1b{letter-spacing:308.447407px;}
.ls1a{letter-spacing:366.767366px;}
.ls18{letter-spacing:367.487524px;}
.ls1c{letter-spacing:384.767506px;}
.ls23{letter-spacing:446.687546px;}
.ls21{letter-spacing:456.767506px;}
.ls7{letter-spacing:1470.389226px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2{word-spacing:-23.328891px;}
.ws7{word-spacing:-16.308050px;}
.ws1{word-spacing:-16.272611px;}
.ws9{word-spacing:-15.026225px;}
.ws4{word-spacing:-14.970850px;}
.ws8{word-spacing:-13.506269px;}
.ws5{word-spacing:-11.567969px;}
.ws6{word-spacing:-10.902647px;}
.ws0{word-spacing:-9.438126px;}
.ws3{word-spacing:0.000000px;}
._11{margin-left:-12.524645px;}
._1{margin-left:-1.453319px;}
._0{width:1.586028px;}
._d{width:2.843635px;}
._9{width:3.870427px;}
._7{width:5.819045px;}
._8{width:7.535206px;}
._a{width:8.773012px;}
._b{width:10.071324px;}
._e{width:11.347286px;}
._3{width:12.404571px;}
._2{width:13.514570px;}
._4{width:14.661133px;}
._c{width:17.819871px;}
._17{width:18.925370px;}
._12{width:20.621226px;}
._6{width:22.090858px;}
._5{width:23.399192px;}
._21{width:24.667912px;}
._20{width:25.739887px;}
._10{width:26.980201px;}
._f{width:29.015965px;}
._44{width:30.449328px;}
._27{width:32.395919px;}
._28{width:33.529725px;}
._26{width:34.629644px;}
._43{width:40.274263px;}
._42{width:41.354022px;}
._24{width:60.984029px;}
._45{width:87.004617px;}
._35{width:102.576055px;}
._19{width:134.748122px;}
._29{width:172.418678px;}
._2b{width:177.617453px;}
._23{width:179.031198px;}
._2f{width:180.515785px;}
._22{width:191.796542px;}
._36{width:201.097647px;}
._2a{width:213.338107px;}
._37{width:247.460076px;}
._40{width:264.023121px;}
._39{width:273.153555px;}
._3d{width:280.261945px;}
._3a{width:290.155213px;}
._31{width:302.059166px;}
._38{width:321.947308px;}
._3f{width:331.774056px;}
._2d{width:335.531478px;}
._30{width:344.550987px;}
._3c{width:349.054038px;}
._41{width:356.254976px;}
._32{width:360.784411px;}
._3e{width:373.534958px;}
._2e{width:377.027863px;}
._1b{width:379.614919px;}
._2c{width:386.613375px;}
._14{width:398.147709px;}
._16{width:404.540805px;}
._18{width:421.930290px;}
._1e{width:427.321307px;}
._1c{width:428.984222px;}
._3b{width:430.627341px;}
._15{width:437.787136px;}
._1a{width:445.410998px;}
._1d{width:446.521201px;}
._33{width:493.258498px;}
._34{width:515.939350px;}
._25{width:679.828768px;}
._13{width:1335.939413px;}
._1f{width:1579.822090px;}
.fc2{color:rgb(255,0,0);}
.fc1{color:rgb(192,0,0);}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:38.881485px;}
.fs2{font-size:41.761620px;}
.fs5{font-size:48.241800px;}
.fs0{font-size:59.762250px;}
.fs3{font-size:66.242700px;}
.fs1{font-size:72.002705px;}
.y0{bottom:0.000000px;}
.y93{bottom:2.879997px;}
.y97{bottom:2.879998px;}
.y8e{bottom:3.240006px;}
.yc7{bottom:3.780018px;}
.yca{bottom:3.959953px;}
.y134{bottom:3.959954px;}
.y7b{bottom:4.500000px;}
.y1a6{bottom:4.859940px;}
.y164{bottom:4.859973px;}
.y131{bottom:4.860008px;}
.y2{bottom:57.960022px;}
.y1{bottom:76.140060px;}
.y29{bottom:94.860077px;}
.yc4{bottom:99.540115px;}
.y147{bottom:100.260132px;}
.y4b{bottom:101.520127px;}
.y10b{bottom:106.560104px;}
.y1ad{bottom:106.740005px;}
.y6a{bottom:107.460022px;}
.y13a{bottom:107.820099px;}
.y12e{bottom:108.360077px;}
.y14e{bottom:114.120072px;}
.y28{bottom:115.560036px;}
.y8c{bottom:118.980079px;}
.y8b{bottom:123.480079px;}
.y18e{bottom:124.020058px;}
.yc3{bottom:126.000068px;}
.y146{bottom:126.540047px;}
.y4a{bottom:127.980079px;}
.y27{bottom:129.060036px;}
.y69{bottom:132.660049px;}
.y1b9{bottom:133.020058px;}
.ye4{bottom:133.740074px;}
.y139{bottom:134.100083px;}
.y12d{bottom:134.820099px;}
.y1f2{bottom:138.240074px;}
.y15d{bottom:138.600083px;}
.y1d6{bottom:141.120072px;}
.y10a{bottom:141.840088px;}
.y1ac{bottom:142.020058px;}
.y14d{bottom:144.540047px;}
.y18d{bottom:148.140060px;}
.y26{bottom:150.300041px;}
.yc2{bottom:152.280052px;}
.y8a{bottom:153.900055px;}
.y145{bottom:156.960091px;}
.y68{bottom:157.860077px;}
.y1b8{bottom:159.480079px;}
.y12c{bottom:161.100083px;}
.yb2{bottom:162.540047px;}
.y49{bottom:163.260064px;}
.y138{bottom:164.700096px;}
.y15c{bottom:164.880066px;}
.y109{bottom:168.300041px;}
.y1aa{bottom:171.180039px;}
.y18c{bottom:172.260064px;}
.y1ab{bottom:175.500068px;}
.y1a9{bottom:176.040047px;}
.y25{bottom:176.580093px;}
.yc1{bottom:178.740074px;}
.y89{bottom:180.000068px;}
.ye3{bottom:182.160049px;}
.y67{bottom:183.240074px;}
.y183{bottom:183.780052px;}
.y88{bottom:184.500068px;}
.y1b7{bottom:185.760064px;}
.y12b{bottom:187.560036px;}
.yb1{bottom:188.820099px;}
.y48{bottom:189.720085px;}
.y108{bottom:192.420043px;}
.y18b{bottom:193.680039px;}
.y1f1{bottom:199.980079px;}
.y15b{bottom:200.340088px;}
.y1a8{bottom:200.880066px;}
.y24{bottom:203.040047px;}
.y87{bottom:205.740074px;}
.ye2{bottom:206.280052px;}
.y1a5{bottom:208.080093px;}
.y66{bottom:208.440033px;}
.y86{bottom:210.240074px;}
.y1d5{bottom:211.860077px;}
.y1b6{bottom:212.220085px;}
.y1a4{bottom:212.940033px;}
.y12a{bottom:213.840088px;}
.yc0{bottom:214.020058px;}
.yb0{bottom:215.280052px;}
.y47{bottom:216.000068px;}
.y107{bottom:216.540047px;}
.y84{bottom:220.320099px;}
.y1a7{bottom:225.720085px;}
.y85{bottom:225.900055px;}
.y1f0{bottom:226.260064px;}
.y23{bottom:229.320099px;}
.ye1{bottom:230.400055px;}
.y65{bottom:233.820099px;}
.y15a{bottom:235.440033px;}
.y182{bottom:236.520058px;}
.y1d4{bottom:238.320099px;}
.y1b5{bottom:238.500068px;}
.y129{bottom:240.300041px;}
.y106{bottom:240.840088px;}
.yaf{bottom:241.560036px;}
.y46{bottom:242.280052px;}
.y1a2{bottom:245.880066px;}
.ybf{bottom:249.480079px;}
.y1a3{bottom:250.200096px;}
.y1a1{bottom:250.740074px;}
.ye0{bottom:254.700096px;}
.y22{bottom:255.780052px;}
.y83{bottom:255.960091px;}
.y64{bottom:259.020058px;}
.y1ef{bottom:261.720085px;}
.y181{bottom:262.980079px;}
.y19e{bottom:263.520058px;}
.y105{bottom:264.960091px;}
.y128{bottom:266.580093px;}
.yae{bottom:268.020058px;}
.y45{bottom:269.640060px;}
.y1d3{bottom:273.600083px;}
.y1a0{bottom:275.580093px;}
.ybe{bottom:275.760064px;}
.y21{bottom:282.060036px;}
.y82{bottom:282.420043px;}
.y19d{bottom:282.960091px;}
.y63{bottom:284.220085px;}
.y19c{bottom:287.820099px;}
.y1ee{bottom:288.000068px;}
.y104{bottom:289.080093px;}
.y180{bottom:289.260064px;}
.ydf{bottom:289.980079px;}
.y1b4{bottom:291.240074px;}
.y127{bottom:293.040047px;}
.yad{bottom:294.300041px;}
.y44{bottom:297.000068px;}
.y19f{bottom:300.600083px;}
.ybd{bottom:306.180039px;}
.y20{bottom:308.520058px;}
.y1d2{bottom:309.060036px;}
.y62{bottom:309.600083px;}
.y103{bottom:313.380066px;}
.y1ed{bottom:314.460091px;}
.y17f{bottom:315.720085px;}
.yde{bottom:316.260064px;}
.y81{bottom:316.620072px;}
.y1b3{bottom:317.700096px;}
.y126{bottom:319.320099px;}
.yac{bottom:320.760064px;}
.y43{bottom:323.280052px;}
.y19b{bottom:325.440033px;}
.y1f{bottom:334.800041px;}
.y102{bottom:337.500068px;}
.y1fb{bottom:340.740074px;}
.y80{bottom:342.000068px;}
.ydd{bottom:342.720085px;}
.y1b2{bottom:343.980079px;}
.y1d1{bottom:344.340088px;}
.y125{bottom:345.780052px;}
.yab{bottom:347.040047px;}
.y1ec{bottom:349.740074px;}
.y19a{bottom:350.460091px;}
.y17e{bottom:351.000068px;}
.y42{bottom:359.820099px;}
.y61{bottom:360.000068px;}
.y1e{bottom:361.260064px;}
.y101{bottom:361.620072px;}
.y7f{bottom:367.200096px;}
.ydc{bottom:369.000068px;}
.y154{bottom:370.800041px;}
.yaa{bottom:373.500068px;}
.y199{bottom:375.300041px;}
.y1eb{bottom:376.200096px;}
.y1b1{bottom:379.440033px;}
.y1d0{bottom:379.800041px;}
.y124{bottom:381.060036px;}
.y100{bottom:385.740074px;}
.y41{bottom:386.100083px;}
.y17d{bottom:386.460091px;}
.y60{bottom:395.460091px;}
.y1d{bottom:396.540047px;}
.y153{bottom:397.260064px;}
.ya9{bottom:399.780052px;}
.y198{bottom:402.480079px;}
.ydb{bottom:404.460091px;}
.y1cf{bottom:406.080093px;}
.y7e{bottom:407.520058px;}
.y1fa{bottom:411.480079px;}
.y40{bottom:412.560036px;}
.y17c{bottom:412.740074px;}
.y1b0{bottom:414.720085px;}
.y123{bottom:416.520058px;}
.yff{bottom:421.200096px;}
.y1c{bottom:423.000068px;}
.y7d{bottom:423.180039px;}
.y152{bottom:423.540047px;}
.ya8{bottom:426.240074px;}
.y197{bottom:428.760064px;}
.y5f{bottom:430.740074px;}
.y1ce{bottom:432.540047px;}
.y1ea{bottom:437.940033px;}
.y17b{bottom:439.200096px;}
.yda{bottom:439.740074px;}
.y122{bottom:442.800041px;}
.y3f{bottom:447.840088px;}
.y7c{bottom:448.560036px;}
.y1b{bottom:449.280052px;}
.y1af{bottom:450.180039px;}
.ya7{bottom:452.520058px;}
.yfe{bottom:456.480079px;}
.y79{bottom:458.640060px;}
.y1cd{bottom:458.820099px;}
.y151{bottom:459.000068px;}
.y7a{bottom:464.220085px;}
.y17a{bottom:465.480079px;}
.y5e{bottom:466.200096px;}
.y121{bottom:469.260064px;}
.y1ae{bottom:471.600083px;}
.y1f9{bottom:473.220085px;}
.y1a{bottom:475.740074px;}
.y3e{bottom:478.260064px;}
.ya6{bottom:478.980079px;}
.y150{bottom:485.280052px;}
.y196{bottom:490.500068px;}
.y1e9{bottom:490.680039px;}
.y179{bottom:491.940033px;}
.y5d{bottom:492.480079px;}
.y78{bottom:493.200096px;}
.y120{bottom:495.540047px;}
.y1f8{bottom:499.680039px;}
.yfd{bottom:500.940033px;}
.y19{bottom:502.020058px;}
.ya5{bottom:505.260064px;}
.y144{bottom:506.160049px;}
.y1cc{bottom:511.560036px;}
.y14f{bottom:515.880066px;}
.y195{bottom:516.960091px;}
.y77{bottom:518.580093px;}
.y5c{bottom:518.940033px;}
.y1e8{bottom:525.960091px;}
.yfc{bottom:527.220085px;}
.y18{bottom:528.480079px;}
.y11f{bottom:531.000068px;}
.y143{bottom:532.620072px;}
.y1f7{bottom:534.960091px;}
.y14c{bottom:536.220085px;}
.y1cb{bottom:538.020058px;}
.ya4{bottom:540.720085px;}
.y194{bottom:543.240074px;}
.y5b{bottom:545.220085px;}
.y1e7{bottom:552.420043px;}
.yfb{bottom:553.680039px;}
.y76{bottom:553.860077px;}
.y17{bottom:554.760064px;}
.y142{bottom:558.900055px;}
.y1f6{bottom:561.420043px;}
.y14b{bottom:562.680039px;}
.y178{bottom:564.300041px;}
.y11e{bottom:566.280052px;}
.y177{bottom:569.160049px;}
.y193{bottom:569.700096px;}
.ya3{bottom:571.140060px;}
.y5a{bottom:571.680039px;}
.y1ca{bottom:573.300041px;}
.yfa{bottom:579.960091px;}
.y16{bottom:581.220085px;}
.y75{bottom:584.280052px;}
.y137{bottom:584.640060px;}
.y141{bottom:585.360077px;}
.y1e6{bottom:587.700096px;}
.y14a{bottom:588.960091px;}
.y175{bottom:592.920043px;}
.y18a{bottom:595.620072px;}
.y192{bottom:595.980079px;}
.y59{bottom:597.960091px;}
.y1c9{bottom:599.760064px;}
.y11d{bottom:601.740074px;}
.yb3{bottom:603.540047px;}
.yf9{bottom:606.420043px;}
.yd9{bottom:606.960091px;}
.y15{bottom:607.500068px;}
.y136{bottom:611.100083px;}
.y140{bottom:611.640060px;}
.y1e5{bottom:614.160049px;}
.y149{bottom:615.420043px;}
.y176{bottom:616.680039px;}
.y159{bottom:616.860077px;}
.ybc{bottom:617.940033px;}
.y11c{bottom:618.840088px;}
.y189{bottom:621.900055px;}
.y1f5{bottom:623.160049px;}
.y58{bottom:624.420043px;}
.yc9{bottom:624.600083px;}
.y90{bottom:625.500068px;}
.y1c8{bottom:626.040047px;}
.yc8{bottom:628.560036px;}
.y191{bottom:629.100083px;}
.yf8{bottom:632.700096px;}
.yd8{bottom:633.420043px;}
.y174{bottom:635.760064px;}
.y173{bottom:640.620072px;}
.y135{bottom:641.520058px;}
.y3d{bottom:641.700096px;}
.y14{bottom:642.960091px;}
.y158{bottom:643.320099px;}
.y148{bottom:645.840088px;}
.y13f{bottom:647.100083px;}
.y188{bottom:648.360077px;}
.y1e4{bottom:649.440033px;}
.y57{bottom:650.700096px;}
.y1c7{bottom:652.500068px;}
.y190{bottom:653.400055px;}
.y133{bottom:656.820099px;}
.yf7{bottom:659.160049px;}
.yd7{bottom:659.700096px;}
.yc5{bottom:659.880066px;}
.y132{bottom:660.780052px;}
.y171{bottom:664.380066px;}
.y130{bottom:665.280052px;}
.y3c{bottom:668.160049px;}
.y12f{bottom:670.140060px;}
.y8f{bottom:671.940033px;}
.y18f{bottom:674.820099px;}
.y1e3{bottom:675.900055px;}
.y56{bottom:677.160049px;}
.y13{bottom:678.240074px;}
.y157{bottom:678.600083px;}
.y1c6{bottom:678.780052px;}
.y13e{bottom:682.380066px;}
.y187{bottom:683.640060px;}
.yf6{bottom:685.440033px;}
.yd6{bottom:686.160049px;}
.y172{bottom:688.140060px;}
.y3b{bottom:694.440067px;}
.yc6{bottom:697.140060px;}
.y55{bottom:703.440067px;}
.y12{bottom:704.700061px;}
.y156{bottom:705.060070px;}
.y1c5{bottom:705.240074px;}
.y170{bottom:707.220051px;}
.y186{bottom:710.100083px;}
.y1e2{bottom:711.180073px;}
.yf5{bottom:711.900055px;}
.y16f{bottom:712.080059px;}
.yd5{bottom:712.440067px;}
.y13d{bottom:712.800076px;}
.y3a{bottom:720.900055px;}
.y8d{bottom:721.080059px;}
.y11b{bottom:725.040081px;}
.y54{bottom:729.900055px;}
.y1c4{bottom:731.520058px;}
.y155{bottom:735.480079px;}
.y16d{bottom:735.840054px;}
.y185{bottom:736.380066px;}
.y1e1{bottom:737.640060px;}
.yf4{bottom:738.180073px;}
.yd4{bottom:738.900055px;}
.y11{bottom:739.980079px;}
.ybb{bottom:744.120072px;}
.y39{bottom:747.180073px;}
.y11a{bottom:751.320065px;}
.y53{bottom:756.180073px;}
.y1c3{bottom:757.980079px;}
.y16e{bottom:759.600083px;}
.y74{bottom:762.480079px;}
.y1e0{bottom:763.920078px;}
.yf3{bottom:764.640060px;}
.yd3{bottom:765.180073px;}
.y10{bottom:766.440067px;}
.yba{bottom:770.580059px;}
.y184{bottom:771.660049px;}
.y38{bottom:773.640060px;}
.y119{bottom:777.780052px;}
.y16c{bottom:778.680073px;}
.y52{bottom:782.640060px;}
.y16b{bottom:783.540081px;}
.y1c2{bottom:784.260064px;}
.y73{bottom:787.680073px;}
.yf2{bottom:790.920078px;}
.yd2{bottom:791.640060px;}
.yf{bottom:792.720051px;}
.yb9{bottom:796.860077px;}
.y1df{bottom:799.380066px;}
.y37{bottom:799.920078px;}
.y118{bottom:804.060070px;}
.y169{bottom:807.300076px;}
.y51{bottom:808.920078px;}
.y1c1{bottom:810.720051px;}
.y72{bottom:813.060070px;}
.yf1{bottom:817.380066px;}
.yd1{bottom:817.920078px;}
.ye{bottom:819.180073px;}
.yb8{bottom:823.320065px;}
.y1de{bottom:825.660049px;}
.y117{bottom:830.520058px;}
.y16a{bottom:831.060070px;}
.y36{bottom:835.380066px;}
.ya2{bottom:835.740074px;}
.y1c0{bottom:837.000068px;}
.y71{bottom:838.260064px;}
.yd0{bottom:844.380066px;}
.yd{bottom:845.460056px;}
.yb7{bottom:849.600083px;}
.y168{bottom:850.140060px;}
.yf0{bottom:852.660049px;}
.y167{bottom:855.000068px;}
.y116{bottom:856.800076px;}
.y1dd{bottom:861.120072px;}
.y35{bottom:861.660049px;}
.ya1{bottom:862.200061px;}
.y70{bottom:863.460056px;}
.ycf{bottom:870.660049px;}
.yc{bottom:871.920078px;}
.yb6{bottom:876.060070px;}
.y1bf{bottom:877.140060px;}
.y165{bottom:878.760064px;}
.y115{bottom:883.260064px;}
.y1dc{bottom:887.400055px;}
.y34{bottom:888.120072px;}
.ya0{bottom:888.480079px;}
.y6f{bottom:888.840054px;}
.yef{bottom:894.780052px;}
.yce{bottom:897.120072px;}
.yb{bottom:898.200061px;}
.y1be{bottom:902.340054px;}
.y166{bottom:902.520058px;}
.y114{bottom:909.540081px;}
.yb5{bottom:911.340054px;}
.y1f4{bottom:913.860077px;}
.y6e{bottom:914.040081px;}
.y33{bottom:914.400055px;}
.y9f{bottom:914.940067px;}
.yee{bottom:919.080059px;}
.y163{bottom:921.600083px;}
.y1db{bottom:922.860077px;}
.ycd{bottom:923.400055px;}
.ya{bottom:924.480079px;}
.y162{bottom:926.460056px;}
.y1bd{bottom:929.880066px;}
.y113{bottom:936.000068px;}
.y32{bottom:940.860077px;}
.yb4{bottom:941.580059px;}
.yed{bottom:943.200061px;}
.y1da{bottom:949.140060px;}
.y6d{bottom:949.500068px;}
.ycc{bottom:949.860077px;}
.y9e{bottom:950.220051px;}
.y9{bottom:950.940067px;}
.y1bc{bottom:956.160049px;}
.y31{bottom:967.140060px;}
.yec{bottom:967.320065px;}
.y112{bottom:971.280053px;}
.y161{bottom:973.980079px;}
.ycb{bottom:974.520058px;}
.y1f3{bottom:975.600065px;}
.y50{bottom:976.140060px;}
.y9d{bottom:976.680073px;}
.y6c{bottom:979.920061px;}
.y1bb{bottom:983.520058px;}
.y1d9{bottom:984.600065px;}
.y8{bottom:986.220068px;}
.yeb{bottom:991.620072px;}
.y30{bottom:993.600065px;}
.y160{bottom:997.920061px;}
.y92{bottom:1000.260064px;}
.y4f{bottom:1002.600065px;}
.y9c{bottom:1002.960074px;}
.y91{bottom:1003.140060px;}
.y111{bottom:1006.740074px;}
.y1ba{bottom:1009.800058px;}
.y1d8{bottom:1010.880066px;}
.yea{bottom:1015.740074px;}
.y2f{bottom:1019.880066px;}
.y15f{bottom:1021.680073px;}
.y7{bottom:1028.340070px;}
.y4e{bottom:1028.880066px;}
.y9b{bottom:1029.420061px;}
.y1d7{bottom:1037.340070px;}
.y110{bottom:1038.420061px;}
.ye9{bottom:1039.860060px;}
.y10f{bottom:1042.920061px;}
.y96{bottom:1044.180073px;}
.y15e{bottom:1045.440067px;}
.y2e{bottom:1046.340070px;}
.y95{bottom:1047.060070px;}
.y6{bottom:1053.900072px;}
.y4d{bottom:1055.340070px;}
.y9a{bottom:1055.700061px;}
.ye8{bottom:1063.980063px;}
.y10e{bottom:1068.840070px;}
.y2d{bottom:1072.620072px;}
.y10d{bottom:1073.340070px;}
.y5{bottom:1078.740074px;}
.y4c{bottom:1081.620072px;}
.y99{bottom:1082.160067px;}
.ye7{bottom:1088.280069px;}
.y94{bottom:1089.180073px;}
.y13c{bottom:1099.080059px;}
.y10c{bottom:1103.940067px;}
.y2c{bottom:1108.080059px;}
.ye6{bottom:1112.400072px;}
.y98{bottom:1117.440067px;}
.y4{bottom:1120.680064px;}
.y13b{bottom:1125.360068px;}
.y2b{bottom:1134.360068px;}
.y6b{bottom:1135.440067px;}
.ye5{bottom:1136.520066px;}
.y3{bottom:1151.820065px;}
.y2a{bottom:1160.820065px;}
.h15{height:12.419992px;}
.h13{height:12.420009px;}
.hf{height:14.579990px;}
.h11{height:14.580025px;}
.h1d{height:17.819962px;}
.h16{height:18.000000px;}
.h18{height:18.179970px;}
.h1c{height:18.720016px;}
.ha{height:20.159981px;}
.hb{height:20.160049px;}
.h1a{height:20.340002px;}
.hd{height:20.340019px;}
.he{height:20.340020px;}
.h21{height:21.959953px;}
.h22{height:21.959954px;}
.h1e{height:21.959988px;}
.h20{height:21.960021px;}
.h1f{height:21.960022px;}
.h7{height:25.914662px;}
.h12{height:31.402781px;}
.h8{height:39.831773px;}
.h14{height:41.537314px;}
.h1b{height:43.508552px;}
.h10{height:47.982689px;}
.h5{height:53.304673px;}
.h19{height:57.939676px;}
.h2{height:59.441261px;}
.h17{height:61.192109px;}
.h6{height:65.886904px;}
.h9{height:67.827608px;}
.h4{height:71.615971px;}
.h3{height:73.725425px;}
.hc{height:106.207003px;}
.h0{height:1262.880060px;}
.h1{height:1263.000000px;}
.w15{width:4.139992px;}
.w14{width:4.500000px;}
.w10{width:7.019989px;}
.w13{width:7.019990px;}
.w1a{width:7.560001px;}
.w9{width:7.739972px;}
.wd{width:7.740006px;}
.wc{width:7.919975px;}
.we{width:7.919992px;}
.w1e{width:7.920010px;}
.w1c{width:8.280001px;}
.w19{width:8.819997px;}
.w18{width:9.000000px;}
.w1f{width:9.539996px;}
.wb{width:9.899986px;}
.w8{width:9.900021px;}
.w1d{width:10.259996px;}
.w1b{width:10.620003px;}
.w17{width:12.240006px;}
.w5{width:32.399994px;}
.w16{width:38.340019px;}
.wf{width:40.139992px;}
.w11{width:40.680038px;}
.w12{width:57.419975px;}
.wa{width:73.440033px;}
.w7{width:83.519989px;}
.w4{width:107.819962px;}
.w3{width:112.680004px;}
.w2{width:117.540012px;}
.w6{width:229.319997px;}
.w0{width:892.980015px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x2{left:84.959997px;}
.x5f{left:86.579999px;}
.x23{left:93.060001px;}
.x46{left:95.760003px;}
.x61{left:101.519998px;}
.x52{left:102.959997px;}
.x59{left:105.299998px;}
.x63{left:110.879998px;}
.xa{left:111.959997px;}
.x7{left:114.659998px;}
.x69{left:115.739997px;}
.x3d{left:117.000000px;}
.x6{left:119.519998px;}
.x4d{left:120.959997px;}
.x31{left:122.939999px;}
.x3{left:126.000000px;}
.x5a{left:127.799998px;}
.x18{left:130.860000px;}
.x6a{left:136.079999px;}
.xb{left:138.959997px;}
.x19{left:143.280001px;}
.x3c{left:144.539996px;}
.x34{left:149.580008px;}
.x17{left:152.819996px;}
.xf{left:158.400003px;}
.x5b{left:169.740006px;}
.x64{left:187.740006px;}
.x51{left:203.039996px;}
.x10{left:210.060001px;}
.x58{left:213.659998px;}
.x32{left:219.419992px;}
.x54{left:221.219999px;}
.x24{left:222.300007px;}
.x4a{left:238.500000px;}
.x65{left:242.639992px;}
.x5c{left:247.680005px;}
.x3b{left:249.120002px;}
.x5{left:264.240006px;}
.x25{left:275.400003px;}
.x3e{left:282.240006px;}
.xd{left:295.199993px;}
.x3f{left:298.439999px;}
.x66{left:317.519989px;}
.x5d{left:322.560001px;}
.x2f{left:342.180005px;}
.x40{left:344.160015px;}
.x41{left:360.360008px;}
.x67{left:363.060001px;}
.x9{left:364.680005px;}
.x4e{left:371.339985px;}
.x4f{left:381.420010px;}
.x5e{left:383.220017px;}
.xe{left:385.019989px;}
.x22{left:386.279983px;}
.x30{left:388.800007px;}
.x60{left:392.220017px;}
.x1c{left:402.480011px;}
.x62{left:404.100014px;}
.x42{left:406.079990px;}
.x33{left:413.100014px;}
.x38{left:420.839985px;}
.x37{left:422.100014px;}
.x11{left:426.779983px;}
.x4b{left:438.839985px;}
.x1{left:442.620002px;}
.x4{left:446.399987px;}
.x1a{left:448.560001px;}
.x39{left:459.180005px;}
.x12{left:465.300007px;}
.x43{left:468.000000px;}
.x3a{left:471.420010px;}
.x47{left:473.399987px;}
.x44{left:484.199993px;}
.x2e{left:488.339985px;}
.x2c{left:510.839985px;}
.x45{left:513.540012px;}
.x1b{left:532.079990px;}
.x48{left:552.420010px;}
.x2d{left:556.379998px;}
.x8{left:557.459988px;}
.x49{left:561.600014px;}
.x13{left:565.560001px;}
.x1d{left:574.560001px;}
.xc{left:584.460023px;}
.x20{left:590.759994px;}
.x1e{left:599.399987px;}
.x14{left:601.559967px;}
.x2a{left:666.360008px;}
.x1f{left:672.840019px;}
.x28{left:674.639992px;}
.x26{left:676.259994px;}
.x21{left:681.480011px;}
.x36{left:690.480011px;}
.x35{left:692.100014px;}
.x15{left:695.700027px;}
.x4c{left:710.820030px;}
.x29{left:715.320030px;}
.x27{left:716.399987px;}
.x50{left:719.820030px;}
.x16{left:721.799973px;}
.x2b{left:723.779983px;}
.x68{left:730.620002px;}
.x56{left:731.700027px;}
.x55{left:732.779983px;}
.x53{left:734.399987px;}
.x57{left:737.639992px;}
@media print{
.v2{vertical-align:-21.119996pt;}
.v3{vertical-align:-13.439940pt;}
.v6{vertical-align:-8.959964pt;}
.v5{vertical-align:-5.120116pt;}
.v0{vertical-align:0.000000pt;}
.v7{vertical-align:7.039796pt;}
.v1{vertical-align:21.119996pt;}
.v4{vertical-align:35.840088pt;}
.ls3{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.004370pt;}
.ls6{letter-spacing:0.004750pt;}
.ls2{letter-spacing:0.005188pt;}
.lsa{letter-spacing:0.031501pt;}
.ls15{letter-spacing:0.044407pt;}
.ls20{letter-spacing:0.049222pt;}
.ls26{letter-spacing:0.053502pt;}
.ls8{letter-spacing:0.061918pt;}
.ls4{letter-spacing:0.062897pt;}
.ls24{letter-spacing:0.062901pt;}
.ls13{letter-spacing:0.190689pt;}
.ls1d{letter-spacing:0.190933pt;}
.ls10{letter-spacing:0.251923pt;}
.ls1e{letter-spacing:0.255425pt;}
.ls16{letter-spacing:0.255489pt;}
.lsc{letter-spacing:5.311314pt;}
.lsd{letter-spacing:5.951330pt;}
.lsb{letter-spacing:20.031314pt;}
.lse{letter-spacing:20.671330pt;}
.ls25{letter-spacing:28.991334pt;}
.ls9{letter-spacing:34.751314pt;}
.ls14{letter-spacing:36.031346pt;}
.ls12{letter-spacing:46.271334pt;}
.ls0{letter-spacing:46.911350pt;}
.ls5{letter-spacing:48.831334pt;}
.ls11{letter-spacing:107.012646pt;}
.lsf{letter-spacing:145.412546pt;}
.ls17{letter-spacing:259.455501pt;}
.ls1f{letter-spacing:272.255425pt;}
.ls22{letter-spacing:272.255429pt;}
.ls19{letter-spacing:273.535457pt;}
.ls1b{letter-spacing:274.175473pt;}
.ls1a{letter-spacing:326.015437pt;}
.ls18{letter-spacing:326.655577pt;}
.ls1c{letter-spacing:342.015561pt;}
.ls23{letter-spacing:397.055597pt;}
.ls21{letter-spacing:406.015561pt;}
.ls7{letter-spacing:1307.012646pt;}
.ws2{word-spacing:-20.736792pt;}
.ws7{word-spacing:-14.496045pt;}
.ws1{word-spacing:-14.464543pt;}
.ws9{word-spacing:-13.356644pt;}
.ws4{word-spacing:-13.307422pt;}
.ws8{word-spacing:-12.005572pt;}
.ws5{word-spacing:-10.282639pt;}
.ws6{word-spacing:-9.691242pt;}
.ws0{word-spacing:-8.389445pt;}
.ws3{word-spacing:0.000000pt;}
._11{margin-left:-11.133018pt;}
._1{margin-left:-1.291839pt;}
._0{width:1.409803pt;}
._d{width:2.527675pt;}
._9{width:3.440379pt;}
._7{width:5.172485pt;}
._8{width:6.697961pt;}
._a{width:7.798233pt;}
._b{width:8.952288pt;}
._e{width:10.086476pt;}
._3{width:11.026285pt;}
._2{width:12.012951pt;}
._4{width:13.032118pt;}
._c{width:15.839885pt;}
._17{width:16.822551pt;}
._12{width:18.329979pt;}
._6{width:19.636318pt;}
._5{width:20.799281pt;}
._21{width:21.927033pt;}
._20{width:22.879900pt;}
._10{width:23.982401pt;}
._f{width:25.791969pt;}
._44{width:27.066069pt;}
._27{width:28.796372pt;}
._28{width:29.804200pt;}
._26{width:30.781906pt;}
._43{width:35.799345pt;}
._42{width:36.759131pt;}
._24{width:54.208026pt;}
._45{width:77.337438pt;}
._35{width:91.178715pt;}
._19{width:119.776108pt;}
._29{width:153.261047pt;}
._2b{width:157.882180pt;}
._23{width:159.138842pt;}
._2f{width:160.458476pt;}
._22{width:170.485815pt;}
._36{width:178.753464pt;}
._2a{width:189.633873pt;}
._37{width:219.964512pt;}
._40{width:234.687218pt;}
._39{width:242.803160pt;}
._3d{width:249.121729pt;}
._3a{width:257.915745pt;}
._31{width:268.497036pt;}
._38{width:286.175385pt;}
._3f{width:294.910272pt;}
._2d{width:298.250203pt;}
._30{width:306.267544pt;}
._3c{width:310.270256pt;}
._41{width:316.671090pt;}
._32{width:320.697255pt;}
._3e{width:332.031074pt;}
._2e{width:335.135878pt;}
._1b{width:337.435484pt;}
._2c{width:343.656333pt;}
._14{width:353.909075pt;}
._16{width:359.591827pt;}
._18{width:375.049147pt;}
._1e{width:379.841162pt;}
._1c{width:381.319309pt;}
._3b{width:382.779859pt;}
._15{width:389.144121pt;}
._1a{width:395.920888pt;}
._1d{width:396.907734pt;}
._33{width:438.451998pt;}
._34{width:458.612756pt;}
._25{width:604.292238pt;}
._13{width:1187.501701pt;}
._1f{width:1404.286302pt;}
.fs4{font-size:34.561320pt;}
.fs2{font-size:37.121440pt;}
.fs5{font-size:42.881600pt;}
.fs0{font-size:53.122000pt;}
.fs3{font-size:58.882400pt;}
.fs1{font-size:64.002404pt;}
.y0{bottom:0.000000pt;}
.y93{bottom:2.559997pt;}
.y97{bottom:2.559998pt;}
.y8e{bottom:2.880005pt;}
.yc7{bottom:3.360016pt;}
.yca{bottom:3.519958pt;}
.y134{bottom:3.519959pt;}
.y7b{bottom:4.000000pt;}
.y1a6{bottom:4.319947pt;}
.y164{bottom:4.319976pt;}
.y131{bottom:4.320007pt;}
.y2{bottom:51.520020pt;}
.y1{bottom:67.680054pt;}
.y29{bottom:84.320069pt;}
.yc4{bottom:88.480103pt;}
.y147{bottom:89.120118pt;}
.y4b{bottom:90.240113pt;}
.y10b{bottom:94.720093pt;}
.y1ad{bottom:94.880005pt;}
.y6a{bottom:95.520020pt;}
.y13a{bottom:95.840088pt;}
.y12e{bottom:96.320069pt;}
.y14e{bottom:101.440064pt;}
.y28{bottom:102.720032pt;}
.y8c{bottom:105.760071pt;}
.y8b{bottom:109.760071pt;}
.y18e{bottom:110.240052pt;}
.yc3{bottom:112.000061pt;}
.y146{bottom:112.480042pt;}
.y4a{bottom:113.760071pt;}
.y27{bottom:114.720032pt;}
.y69{bottom:117.920044pt;}
.y1b9{bottom:118.240052pt;}
.ye4{bottom:118.880066pt;}
.y139{bottom:119.200074pt;}
.y12d{bottom:119.840088pt;}
.y1f2{bottom:122.880066pt;}
.y15d{bottom:123.200074pt;}
.y1d6{bottom:125.440064pt;}
.y10a{bottom:126.080079pt;}
.y1ac{bottom:126.240052pt;}
.y14d{bottom:128.480042pt;}
.y18d{bottom:131.680054pt;}
.y26{bottom:133.600037pt;}
.yc2{bottom:135.360047pt;}
.y8a{bottom:136.800049pt;}
.y145{bottom:139.520081pt;}
.y68{bottom:140.320069pt;}
.y1b8{bottom:141.760071pt;}
.y12c{bottom:143.200074pt;}
.yb2{bottom:144.480042pt;}
.y49{bottom:145.120057pt;}
.y138{bottom:146.400086pt;}
.y15c{bottom:146.560059pt;}
.y109{bottom:149.600037pt;}
.y1aa{bottom:152.160035pt;}
.y18c{bottom:153.120057pt;}
.y1ab{bottom:156.000061pt;}
.y1a9{bottom:156.480042pt;}
.y25{bottom:156.960083pt;}
.yc1{bottom:158.880066pt;}
.y89{bottom:160.000061pt;}
.ye3{bottom:161.920044pt;}
.y67{bottom:162.880066pt;}
.y183{bottom:163.360047pt;}
.y88{bottom:164.000061pt;}
.y1b7{bottom:165.120057pt;}
.y12b{bottom:166.720032pt;}
.yb1{bottom:167.840088pt;}
.y48{bottom:168.640076pt;}
.y108{bottom:171.040039pt;}
.y18b{bottom:172.160035pt;}
.y1f1{bottom:177.760071pt;}
.y15b{bottom:178.080079pt;}
.y1a8{bottom:178.560059pt;}
.y24{bottom:180.480042pt;}
.y87{bottom:182.880066pt;}
.ye2{bottom:183.360047pt;}
.y1a5{bottom:184.960083pt;}
.y66{bottom:185.280030pt;}
.y86{bottom:186.880066pt;}
.y1d5{bottom:188.320069pt;}
.y1b6{bottom:188.640076pt;}
.y1a4{bottom:189.280030pt;}
.y12a{bottom:190.080079pt;}
.yc0{bottom:190.240052pt;}
.yb0{bottom:191.360047pt;}
.y47{bottom:192.000061pt;}
.y107{bottom:192.480042pt;}
.y84{bottom:195.840088pt;}
.y1a7{bottom:200.640076pt;}
.y85{bottom:200.800049pt;}
.y1f0{bottom:201.120057pt;}
.y23{bottom:203.840088pt;}
.ye1{bottom:204.800049pt;}
.y65{bottom:207.840088pt;}
.y15a{bottom:209.280030pt;}
.y182{bottom:210.240052pt;}
.y1d4{bottom:211.840088pt;}
.y1b5{bottom:212.000061pt;}
.y129{bottom:213.600037pt;}
.y106{bottom:214.080079pt;}
.yaf{bottom:214.720032pt;}
.y46{bottom:215.360047pt;}
.y1a2{bottom:218.560059pt;}
.ybf{bottom:221.760071pt;}
.y1a3{bottom:222.400086pt;}
.y1a1{bottom:222.880066pt;}
.ye0{bottom:226.400086pt;}
.y22{bottom:227.360047pt;}
.y83{bottom:227.520081pt;}
.y64{bottom:230.240052pt;}
.y1ef{bottom:232.640076pt;}
.y181{bottom:233.760071pt;}
.y19e{bottom:234.240052pt;}
.y105{bottom:235.520081pt;}
.y128{bottom:236.960083pt;}
.yae{bottom:238.240052pt;}
.y45{bottom:239.680054pt;}
.y1d3{bottom:243.200074pt;}
.y1a0{bottom:244.960083pt;}
.ybe{bottom:245.120057pt;}
.y21{bottom:250.720032pt;}
.y82{bottom:251.040039pt;}
.y19d{bottom:251.520081pt;}
.y63{bottom:252.640076pt;}
.y19c{bottom:255.840088pt;}
.y1ee{bottom:256.000061pt;}
.y104{bottom:256.960083pt;}
.y180{bottom:257.120057pt;}
.ydf{bottom:257.760071pt;}
.y1b4{bottom:258.880066pt;}
.y127{bottom:260.480042pt;}
.yad{bottom:261.600037pt;}
.y44{bottom:264.000061pt;}
.y19f{bottom:267.200074pt;}
.ybd{bottom:272.160035pt;}
.y20{bottom:274.240052pt;}
.y1d2{bottom:274.720032pt;}
.y62{bottom:275.200074pt;}
.y103{bottom:278.560059pt;}
.y1ed{bottom:279.520081pt;}
.y17f{bottom:280.640076pt;}
.yde{bottom:281.120057pt;}
.y81{bottom:281.440064pt;}
.y1b3{bottom:282.400086pt;}
.y126{bottom:283.840088pt;}
.yac{bottom:285.120057pt;}
.y43{bottom:287.360047pt;}
.y19b{bottom:289.280030pt;}
.y1f{bottom:297.600037pt;}
.y102{bottom:300.000061pt;}
.y1fb{bottom:302.880066pt;}
.y80{bottom:304.000061pt;}
.ydd{bottom:304.640076pt;}
.y1b2{bottom:305.760071pt;}
.y1d1{bottom:306.080079pt;}
.y125{bottom:307.360047pt;}
.yab{bottom:308.480042pt;}
.y1ec{bottom:310.880066pt;}
.y19a{bottom:311.520081pt;}
.y17e{bottom:312.000061pt;}
.y42{bottom:319.840088pt;}
.y61{bottom:320.000061pt;}
.y1e{bottom:321.120057pt;}
.y101{bottom:321.440064pt;}
.y7f{bottom:326.400086pt;}
.ydc{bottom:328.000061pt;}
.y154{bottom:329.600037pt;}
.yaa{bottom:332.000061pt;}
.y199{bottom:333.600037pt;}
.y1eb{bottom:334.400086pt;}
.y1b1{bottom:337.280030pt;}
.y1d0{bottom:337.600037pt;}
.y124{bottom:338.720032pt;}
.y100{bottom:342.880066pt;}
.y41{bottom:343.200074pt;}
.y17d{bottom:343.520081pt;}
.y60{bottom:351.520081pt;}
.y1d{bottom:352.480042pt;}
.y153{bottom:353.120057pt;}
.ya9{bottom:355.360047pt;}
.y198{bottom:357.760071pt;}
.ydb{bottom:359.520081pt;}
.y1cf{bottom:360.960083pt;}
.y7e{bottom:362.240052pt;}
.y1fa{bottom:365.760071pt;}
.y40{bottom:366.720032pt;}
.y17c{bottom:366.880066pt;}
.y1b0{bottom:368.640076pt;}
.y123{bottom:370.240052pt;}
.yff{bottom:374.400086pt;}
.y1c{bottom:376.000061pt;}
.y7d{bottom:376.160035pt;}
.y152{bottom:376.480042pt;}
.ya8{bottom:378.880066pt;}
.y197{bottom:381.120057pt;}
.y5f{bottom:382.880066pt;}
.y1ce{bottom:384.480042pt;}
.y1ea{bottom:389.280030pt;}
.y17b{bottom:390.400086pt;}
.yda{bottom:390.880066pt;}
.y122{bottom:393.600037pt;}
.y3f{bottom:398.080079pt;}
.y7c{bottom:398.720032pt;}
.y1b{bottom:399.360047pt;}
.y1af{bottom:400.160035pt;}
.ya7{bottom:402.240052pt;}
.yfe{bottom:405.760071pt;}
.y79{bottom:407.680054pt;}
.y1cd{bottom:407.840088pt;}
.y151{bottom:408.000061pt;}
.y7a{bottom:412.640076pt;}
.y17a{bottom:413.760071pt;}
.y5e{bottom:414.400086pt;}
.y121{bottom:417.120057pt;}
.y1ae{bottom:419.200074pt;}
.y1f9{bottom:420.640076pt;}
.y1a{bottom:422.880066pt;}
.y3e{bottom:425.120057pt;}
.ya6{bottom:425.760071pt;}
.y150{bottom:431.360047pt;}
.y196{bottom:436.000061pt;}
.y1e9{bottom:436.160035pt;}
.y179{bottom:437.280030pt;}
.y5d{bottom:437.760071pt;}
.y78{bottom:438.400086pt;}
.y120{bottom:440.480042pt;}
.y1f8{bottom:444.160035pt;}
.yfd{bottom:445.280030pt;}
.y19{bottom:446.240052pt;}
.ya5{bottom:449.120057pt;}
.y144{bottom:449.920044pt;}
.y1cc{bottom:454.720032pt;}
.y14f{bottom:458.560059pt;}
.y195{bottom:459.520081pt;}
.y77{bottom:460.960083pt;}
.y5c{bottom:461.280030pt;}
.y1e8{bottom:467.520081pt;}
.yfc{bottom:468.640076pt;}
.y18{bottom:469.760071pt;}
.y11f{bottom:472.000061pt;}
.y143{bottom:473.440064pt;}
.y1f7{bottom:475.520081pt;}
.y14c{bottom:476.640076pt;}
.y1cb{bottom:478.240052pt;}
.ya4{bottom:480.640076pt;}
.y194{bottom:482.880066pt;}
.y5b{bottom:484.640076pt;}
.y1e7{bottom:491.040039pt;}
.yfb{bottom:492.160035pt;}
.y76{bottom:492.320069pt;}
.y17{bottom:493.120057pt;}
.y142{bottom:496.800049pt;}
.y1f6{bottom:499.040039pt;}
.y14b{bottom:500.160035pt;}
.y178{bottom:501.600037pt;}
.y11e{bottom:503.360047pt;}
.y177{bottom:505.920044pt;}
.y193{bottom:506.400086pt;}
.ya3{bottom:507.680054pt;}
.y5a{bottom:508.160035pt;}
.y1ca{bottom:509.600037pt;}
.yfa{bottom:515.520081pt;}
.y16{bottom:516.640076pt;}
.y75{bottom:519.360047pt;}
.y137{bottom:519.680054pt;}
.y141{bottom:520.320069pt;}
.y1e6{bottom:522.400086pt;}
.y14a{bottom:523.520081pt;}
.y175{bottom:527.040039pt;}
.y18a{bottom:529.440064pt;}
.y192{bottom:529.760071pt;}
.y59{bottom:531.520081pt;}
.y1c9{bottom:533.120057pt;}
.y11d{bottom:534.880066pt;}
.yb3{bottom:536.480042pt;}
.yf9{bottom:539.040039pt;}
.yd9{bottom:539.520081pt;}
.y15{bottom:540.000061pt;}
.y136{bottom:543.200074pt;}
.y140{bottom:543.680054pt;}
.y1e5{bottom:545.920044pt;}
.y149{bottom:547.040039pt;}
.y176{bottom:548.160035pt;}
.y159{bottom:548.320069pt;}
.ybc{bottom:549.280030pt;}
.y11c{bottom:550.080079pt;}
.y189{bottom:552.800049pt;}
.y1f5{bottom:553.920044pt;}
.y58{bottom:555.040039pt;}
.yc9{bottom:555.200074pt;}
.y90{bottom:556.000061pt;}
.y1c8{bottom:556.480042pt;}
.yc8{bottom:558.720032pt;}
.y191{bottom:559.200074pt;}
.yf8{bottom:562.400086pt;}
.yd8{bottom:563.040039pt;}
.y174{bottom:565.120057pt;}
.y173{bottom:569.440064pt;}
.y135{bottom:570.240052pt;}
.y3d{bottom:570.400086pt;}
.y14{bottom:571.520081pt;}
.y158{bottom:571.840088pt;}
.y148{bottom:574.080079pt;}
.y13f{bottom:575.200074pt;}
.y188{bottom:576.320069pt;}
.y1e4{bottom:577.280030pt;}
.y57{bottom:578.400086pt;}
.y1c7{bottom:580.000061pt;}
.y190{bottom:580.800049pt;}
.y133{bottom:583.840088pt;}
.yf7{bottom:585.920044pt;}
.yd7{bottom:586.400086pt;}
.yc5{bottom:586.560059pt;}
.y132{bottom:587.360047pt;}
.y171{bottom:590.560059pt;}
.y130{bottom:591.360047pt;}
.y3c{bottom:593.920044pt;}
.y12f{bottom:595.680054pt;}
.y8f{bottom:597.280030pt;}
.y18f{bottom:599.840088pt;}
.y1e3{bottom:600.800049pt;}
.y56{bottom:601.920044pt;}
.y13{bottom:602.880066pt;}
.y157{bottom:603.200074pt;}
.y1c6{bottom:603.360047pt;}
.y13e{bottom:606.560059pt;}
.y187{bottom:607.680054pt;}
.yf6{bottom:609.280030pt;}
.yd6{bottom:609.920044pt;}
.y172{bottom:611.680054pt;}
.y3b{bottom:617.280060pt;}
.yc6{bottom:619.680054pt;}
.y55{bottom:625.280060pt;}
.y12{bottom:626.400055pt;}
.y156{bottom:626.720063pt;}
.y1c5{bottom:626.880066pt;}
.y170{bottom:628.640046pt;}
.y186{bottom:631.200074pt;}
.y1e2{bottom:632.160065pt;}
.yf5{bottom:632.800049pt;}
.y16f{bottom:632.960053pt;}
.yd5{bottom:633.280060pt;}
.y13d{bottom:633.600068pt;}
.y3a{bottom:640.800049pt;}
.y8d{bottom:640.960053pt;}
.y11b{bottom:644.480072pt;}
.y54{bottom:648.800049pt;}
.y1c4{bottom:650.240052pt;}
.y155{bottom:653.760071pt;}
.y16d{bottom:654.080048pt;}
.y185{bottom:654.560059pt;}
.y1e1{bottom:655.680054pt;}
.yf4{bottom:656.160065pt;}
.yd4{bottom:656.800049pt;}
.y11{bottom:657.760071pt;}
.ybb{bottom:661.440064pt;}
.y39{bottom:664.160065pt;}
.y11a{bottom:667.840058pt;}
.y53{bottom:672.160065pt;}
.y1c3{bottom:673.760071pt;}
.y16e{bottom:675.200074pt;}
.y74{bottom:677.760071pt;}
.y1e0{bottom:679.040070pt;}
.yf3{bottom:679.680054pt;}
.yd3{bottom:680.160065pt;}
.y10{bottom:681.280060pt;}
.yba{bottom:684.960053pt;}
.y184{bottom:685.920044pt;}
.y38{bottom:687.680054pt;}
.y119{bottom:691.360047pt;}
.y16c{bottom:692.160065pt;}
.y52{bottom:695.680054pt;}
.y16b{bottom:696.480072pt;}
.y1c2{bottom:697.120057pt;}
.y73{bottom:700.160065pt;}
.yf2{bottom:703.040070pt;}
.yd2{bottom:703.680054pt;}
.yf{bottom:704.640046pt;}
.yb9{bottom:708.320069pt;}
.y1df{bottom:710.560059pt;}
.y37{bottom:711.040070pt;}
.y118{bottom:714.720063pt;}
.y169{bottom:717.600068pt;}
.y51{bottom:719.040070pt;}
.y1c1{bottom:720.640046pt;}
.y72{bottom:722.720063pt;}
.yf1{bottom:726.560059pt;}
.yd1{bottom:727.040070pt;}
.ye{bottom:728.160065pt;}
.yb8{bottom:731.840058pt;}
.y1de{bottom:733.920044pt;}
.y117{bottom:738.240052pt;}
.y16a{bottom:738.720063pt;}
.y36{bottom:742.560059pt;}
.ya2{bottom:742.880066pt;}
.y1c0{bottom:744.000061pt;}
.y71{bottom:745.120057pt;}
.yd0{bottom:750.560059pt;}
.yd{bottom:751.520050pt;}
.yb7{bottom:755.200074pt;}
.y168{bottom:755.680054pt;}
.yf0{bottom:757.920044pt;}
.y167{bottom:760.000061pt;}
.y116{bottom:761.600068pt;}
.y1dd{bottom:765.440064pt;}
.y35{bottom:765.920044pt;}
.ya1{bottom:766.400055pt;}
.y70{bottom:767.520050pt;}
.ycf{bottom:773.920044pt;}
.yc{bottom:775.040070pt;}
.yb6{bottom:778.720063pt;}
.y1bf{bottom:779.680054pt;}
.y165{bottom:781.120057pt;}
.y115{bottom:785.120057pt;}
.y1dc{bottom:788.800049pt;}
.y34{bottom:789.440064pt;}
.ya0{bottom:789.760071pt;}
.y6f{bottom:790.080048pt;}
.yef{bottom:795.360047pt;}
.yce{bottom:797.440064pt;}
.yb{bottom:798.400055pt;}
.y1be{bottom:802.080048pt;}
.y166{bottom:802.240052pt;}
.y114{bottom:808.480072pt;}
.yb5{bottom:810.080048pt;}
.y1f4{bottom:812.320069pt;}
.y6e{bottom:812.480072pt;}
.y33{bottom:812.800049pt;}
.y9f{bottom:813.280060pt;}
.yee{bottom:816.960053pt;}
.y163{bottom:819.200074pt;}
.y1db{bottom:820.320069pt;}
.ycd{bottom:820.800049pt;}
.ya{bottom:821.760071pt;}
.y162{bottom:823.520050pt;}
.y1bd{bottom:826.560059pt;}
.y113{bottom:832.000061pt;}
.y32{bottom:836.320069pt;}
.yb4{bottom:836.960053pt;}
.yed{bottom:838.400055pt;}
.y1da{bottom:843.680054pt;}
.y6d{bottom:844.000061pt;}
.ycc{bottom:844.320069pt;}
.y9e{bottom:844.640046pt;}
.y9{bottom:845.280060pt;}
.y1bc{bottom:849.920044pt;}
.y31{bottom:859.680054pt;}
.yec{bottom:859.840058pt;}
.y112{bottom:863.360047pt;}
.y161{bottom:865.760071pt;}
.ycb{bottom:866.240052pt;}
.y1f3{bottom:867.200058pt;}
.y50{bottom:867.680054pt;}
.y9d{bottom:868.160065pt;}
.y6c{bottom:871.040055pt;}
.y1bb{bottom:874.240052pt;}
.y1d9{bottom:875.200058pt;}
.y8{bottom:876.640061pt;}
.yeb{bottom:881.440064pt;}
.y30{bottom:883.200058pt;}
.y160{bottom:887.040055pt;}
.y92{bottom:889.120057pt;}
.y4f{bottom:891.200058pt;}
.y9c{bottom:891.520066pt;}
.y91{bottom:891.680054pt;}
.y111{bottom:894.880066pt;}
.y1ba{bottom:897.600052pt;}
.y1d8{bottom:898.560059pt;}
.yea{bottom:902.880066pt;}
.y2f{bottom:906.560059pt;}
.y15f{bottom:908.160065pt;}
.y7{bottom:914.080063pt;}
.y4e{bottom:914.560059pt;}
.y9b{bottom:915.040055pt;}
.y1d7{bottom:922.080063pt;}
.y110{bottom:923.040055pt;}
.ye9{bottom:924.320054pt;}
.y10f{bottom:927.040055pt;}
.y96{bottom:928.160065pt;}
.y15e{bottom:929.280060pt;}
.y2e{bottom:930.080063pt;}
.y95{bottom:930.720063pt;}
.y6{bottom:936.800064pt;}
.y4d{bottom:938.080063pt;}
.y9a{bottom:938.400055pt;}
.ye8{bottom:945.760056pt;}
.y10e{bottom:950.080063pt;}
.y2d{bottom:953.440064pt;}
.y10d{bottom:954.080063pt;}
.y5{bottom:958.880066pt;}
.y4c{bottom:961.440064pt;}
.y99{bottom:961.920060pt;}
.ye7{bottom:967.360062pt;}
.y94{bottom:968.160065pt;}
.y13c{bottom:976.960053pt;}
.y10c{bottom:981.280060pt;}
.y2c{bottom:984.960053pt;}
.ye6{bottom:988.800064pt;}
.y98{bottom:993.280060pt;}
.y4{bottom:996.160057pt;}
.y13b{bottom:1000.320061pt;}
.y2b{bottom:1008.320061pt;}
.y6b{bottom:1009.280060pt;}
.ye5{bottom:1010.240059pt;}
.y3{bottom:1023.840058pt;}
.y2a{bottom:1031.840058pt;}
.h15{height:11.039993pt;}
.h13{height:11.040008pt;}
.hf{height:12.959991pt;}
.h11{height:12.960022pt;}
.h1d{height:15.839966pt;}
.h16{height:16.000000pt;}
.h18{height:16.159973pt;}
.h1c{height:16.640014pt;}
.ha{height:17.919983pt;}
.hb{height:17.920044pt;}
.h1a{height:18.080002pt;}
.hd{height:18.080017pt;}
.he{height:18.080018pt;}
.h21{height:19.519958pt;}
.h22{height:19.519959pt;}
.h1e{height:19.519989pt;}
.h20{height:19.520019pt;}
.h1f{height:19.520020pt;}
.h7{height:23.035255pt;}
.h12{height:27.913583pt;}
.h8{height:35.406021pt;}
.h14{height:36.922057pt;}
.h1b{height:38.674269pt;}
.h10{height:42.651279pt;}
.h5{height:47.381931pt;}
.h19{height:51.501934pt;}
.h2{height:52.836677pt;}
.h17{height:54.392985pt;}
.h6{height:58.566137pt;}
.h9{height:60.291207pt;}
.h4{height:63.658641pt;}
.h3{height:65.533712pt;}
.hc{height:94.406225pt;}
.h0{height:1122.560053pt;}
.h1{height:1122.666667pt;}
.w15{width:3.679993pt;}
.w14{width:4.000000pt;}
.w10{width:6.239990pt;}
.w13{width:6.239991pt;}
.w1a{width:6.720001pt;}
.w9{width:6.879975pt;}
.wd{width:6.880005pt;}
.wc{width:7.039978pt;}
.we{width:7.039993pt;}
.w1e{width:7.040009pt;}
.w1c{width:7.360001pt;}
.w19{width:7.839997pt;}
.w18{width:8.000000pt;}
.w1f{width:8.479996pt;}
.wb{width:8.799988pt;}
.w8{width:8.800019pt;}
.w1d{width:9.119996pt;}
.w1b{width:9.440003pt;}
.w17{width:10.880005pt;}
.w5{width:28.799995pt;}
.w16{width:34.080017pt;}
.wf{width:35.679993pt;}
.w11{width:36.160034pt;}
.w12{width:51.039978pt;}
.wa{width:65.280029pt;}
.w7{width:74.239990pt;}
.w4{width:95.839966pt;}
.w3{width:100.160004pt;}
.w2{width:104.480011pt;}
.w6{width:203.839997pt;}
.w0{width:793.760013pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x2{left:75.519997pt;}
.x5f{left:76.959999pt;}
.x23{left:82.720001pt;}
.x46{left:85.120003pt;}
.x61{left:90.239998pt;}
.x52{left:91.519997pt;}
.x59{left:93.599998pt;}
.x63{left:98.559998pt;}
.xa{left:99.519997pt;}
.x7{left:101.919998pt;}
.x69{left:102.879997pt;}
.x3d{left:104.000000pt;}
.x6{left:106.239998pt;}
.x4d{left:107.519997pt;}
.x31{left:109.279999pt;}
.x3{left:112.000000pt;}
.x5a{left:113.599998pt;}
.x18{left:116.320000pt;}
.x6a{left:120.959999pt;}
.xb{left:123.519997pt;}
.x19{left:127.360001pt;}
.x3c{left:128.479996pt;}
.x34{left:132.960007pt;}
.x17{left:135.839996pt;}
.xf{left:140.800003pt;}
.x5b{left:150.880005pt;}
.x64{left:166.880005pt;}
.x51{left:180.479996pt;}
.x10{left:186.720001pt;}
.x58{left:189.919998pt;}
.x32{left:195.039993pt;}
.x54{left:196.639999pt;}
.x24{left:197.600006pt;}
.x4a{left:212.000000pt;}
.x65{left:215.679993pt;}
.x5c{left:220.160004pt;}
.x3b{left:221.440002pt;}
.x5{left:234.880005pt;}
.x25{left:244.800003pt;}
.x3e{left:250.880005pt;}
.xd{left:262.399994pt;}
.x3f{left:265.279999pt;}
.x66{left:282.239990pt;}
.x5d{left:286.720001pt;}
.x2f{left:304.160004pt;}
.x40{left:305.920013pt;}
.x41{left:320.320007pt;}
.x67{left:322.720001pt;}
.x9{left:324.160004pt;}
.x4e{left:330.079987pt;}
.x4f{left:339.040009pt;}
.x5e{left:340.640015pt;}
.xe{left:342.239990pt;}
.x22{left:343.359985pt;}
.x30{left:345.600006pt;}
.x60{left:348.640015pt;}
.x1c{left:357.760010pt;}
.x62{left:359.200012pt;}
.x42{left:360.959991pt;}
.x33{left:367.200012pt;}
.x38{left:374.079987pt;}
.x37{left:375.200012pt;}
.x11{left:379.359985pt;}
.x4b{left:390.079987pt;}
.x1{left:393.440002pt;}
.x4{left:396.799988pt;}
.x1a{left:398.720001pt;}
.x39{left:408.160004pt;}
.x12{left:413.600006pt;}
.x43{left:416.000000pt;}
.x3a{left:419.040009pt;}
.x47{left:420.799988pt;}
.x44{left:430.399994pt;}
.x2e{left:434.079987pt;}
.x2c{left:454.079987pt;}
.x45{left:456.480011pt;}
.x1b{left:472.959991pt;}
.x48{left:491.040009pt;}
.x2d{left:494.559998pt;}
.x8{left:495.519989pt;}
.x49{left:499.200012pt;}
.x13{left:502.720001pt;}
.x1d{left:510.720001pt;}
.xc{left:519.520020pt;}
.x20{left:525.119995pt;}
.x1e{left:532.799988pt;}
.x14{left:534.719971pt;}
.x2a{left:592.320007pt;}
.x1f{left:598.080017pt;}
.x28{left:599.679993pt;}
.x26{left:601.119995pt;}
.x21{left:605.760010pt;}
.x36{left:613.760010pt;}
.x35{left:615.200012pt;}
.x15{left:618.400024pt;}
.x4c{left:631.840027pt;}
.x29{left:635.840027pt;}
.x27{left:636.799988pt;}
.x50{left:639.840027pt;}
.x16{left:641.599976pt;}
.x2b{left:643.359985pt;}
.x68{left:649.440002pt;}
.x56{left:650.400024pt;}
.x55{left:651.359985pt;}
.x53{left:652.799988pt;}
.x57{left:655.679993pt;}
}


body.paper-page .doc-shell[data-scieee-split-doc="1"] #page-container {
  position: relative !important;
  top: auto !important;
  left: auto !important;
  right: auto !important;
  bottom: auto !important;
  width: max-content !important;
  min-width: 100% !important;
  height: auto !important;
  overflow: visible !important;
  margin: 0 auto !important;
  padding: 0 !important;
}

body.paper-page .doc-shell[data-scieee-split-doc="1"] #sidebar,
body.paper-page .doc-shell[data-scieee-split-doc="1"] .loading-indicator {
  display: none !important;
}

body.paper-page .doc-shell[data-scieee-split-doc="1"] .pf {
  display: block !important;
  position: relative !important;
  margin-left: auto !important;
  margin-right: auto !important;
}
